summaryrefslogtreecommitdiff
path: root/bignum.c
diff options
context:
space:
mode:
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bignum.c b/bignum.c
index 841ed78665..c5592a14ae 100644
--- a/bignum.c
+++ b/bignum.c
@@ -5317,7 +5317,7 @@ rb_big2dbl(VALUE x)
double d = big2dbl(x);
if (isinf(d)) {
- rb_warning("Bignum out of Float range");
+ rb_warning("Integer out of Float range");
if (d < 0.0)
d = -HUGE_VAL;
else