summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--file.c6
1 files 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
/*