numeric.c: get rid of a compile error on mingw64

* numeric.c (rb_fix2str): typo.


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@56819 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2016-11-17 08:50:36 +00:00
parent b53bebab78
commit 998d1c6c30

View File

@ -3350,7 +3350,7 @@ rb_fix2str(VALUE x, int base)
(val < 0 && (x & 0xFFFFFFFF00000000ull) != 0xFFFFFFFF00000000ull)) {
rb_bug("Unnormalized Fixnum value %p", (void *)x);
}
# elif
# else
/* should do something like above code, but currently ruby does not know */
/* such platforms */
# endif