mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* missing/vsnprintf.c (errno): [BUG] fixes a compilation
error on SIZEOF_LONG > SIZEOF_INT. (BSD_vfprintf): ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23548 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
5220b19b3e
commit
4bdd854347
2 changed files with 11 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Fri May 22 23:22:53 2009 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
||||
|
||||
* missing/vsnprintf.c (errno): [BUG] fixes a compilation
|
||||
error on SIZEOF_LONG > SIZEOF_INT.
|
||||
(BSD_vfprintf): ditto.
|
||||
|
||||
Fri May 22 23:20:48 2009 Yuki Sonoda (Yugui) <yugui@yugui.jp>
|
||||
|
||||
* spec/default.mspec: follows runruby.rb's move at r23542.
|
||||
|
|
|
@ -123,6 +123,10 @@
|
|||
#define NULL 0
|
||||
#endif
|
||||
|
||||
#if SIZEOF_LONG > SIZEOF_INT
|
||||
# include <errno.h>
|
||||
#endif
|
||||
|
||||
/*
|
||||
* NB: to fit things in six character monocase externals, the stdio
|
||||
* code uses the prefix `__s' for stdio objects, typically followed
|
||||
|
@ -598,7 +602,7 @@ BSD_vfprintf(FILE *fp, const char *fmt0, va_list ap)
|
|||
#if SIZEOF_LONG > SIZEOF_INT
|
||||
/* abandon if too larger padding */
|
||||
#define PAD_L(howmany, with) { \
|
||||
ln = (howmany);
|
||||
ln = (howmany); \
|
||||
if ((long)((int)ln) != ln) { \
|
||||
errno = ENOMEM; \
|
||||
goto error; \
|
||||
|
|
Loading…
Reference in a new issue