1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Refix for r29493; it is unsigned.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29494 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
naruse 2010-10-14 00:09:07 +00:00
parent 51427700cc
commit 694826d7e2

6
file.c
View file

@ -317,11 +317,11 @@ rb_stat_cmp(VALUE self, VALUE other)
#define ST2UINT(val) ((val) & ~(~1UL << (sizeof(val) * CHAR_BIT - 1)))
#if SIZEOF_DEV_T > SIZEOF_LONG && defined(HAVE_LONG_LONG)
# define DEVT2NUM(v) LL2NUM(v)
# define DEVT2NUM(v) ULL2NUM(v)
#elif SIZEOF_DEV_T == SIZEOF_LONG
# define DEVT2NUM(v) LONG2NUM(v)
# define DEVT2NUM(v) ULONG2NUM(v)
#else
# define DEVT2NUM(v) INT2NUM(v)
# define DEVT2NUM(v) UINT2NUM(v)
#endif
/*