From 694826d7e2c75e4960b317a475110903458e3c17 Mon Sep 17 00:00:00 2001 From: naruse Date: Thu, 14 Oct 2010 00:09:07 +0000 Subject: [PATCH] Refix for r29493; it is unsigned. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29494 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- file.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/file.c b/file.c index edce3c86b5..33425faae1 100644 --- a/file.c +++ b/file.c @@ -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 /*