From 91430022d64e8c572f6319641df5eb5b31d359f9 Mon Sep 17 00:00:00 2001 From: nobu Date: Sun, 2 Oct 2016 03:32:07 +0000 Subject: [PATCH] numeric.c: adjust type * numeric.c (rb_fix2str): cast to a pointer to adjust argument type for the format. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56323 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- numeric.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/numeric.c b/numeric.c index 70982185b3..9ce86e1a59 100644 --- a/numeric.c +++ b/numeric.c @@ -3271,7 +3271,7 @@ rb_fix2str(VALUE x, int base) # if SIZEOF_VOIDP == SIZEOF_LONG_LONG if ((val >= 0 && (x & 0xFFFFFFFF00000000ull)) || (val < 0 && (x & 0xFFFFFFFF00000000ull) != 0xFFFFFFFF00000000ull)) { - rb_bug("Unnormalized Fixnum value %p", x); + rb_bug("Unnormalized Fixnum value %p", (void *)x); } # elif /* should do something like above code, but currently ruby does not know */