aboutsummaryrefslogtreecommitdiffstats
path: root/bignum.c
diff options
context:
space:
mode:
Diffstat (limited to 'bignum.c')
-rw-r--r--bignum.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bignum.c b/bignum.c
index c58de5d5bb..4100d409c4 100644
--- a/bignum.c
+++ b/bignum.c
@@ -365,7 +365,7 @@ rb_big2str(x, base)
VALUE x;
int base;
{
- VALUE t;
+ volatile VALUE t;
BDIGIT *ds;
long i, j, hbase;
VALUE ss;
@@ -395,7 +395,7 @@ rb_big2str(x, base)
else {
j = 0;
hbase = 0;
- rb_raise(rb_eArgError, "bignum cannot treat base %d", base);
+ rb_raise(rb_eArgError, "Bignum cannot treat base %d", base);
}
t = rb_big_clone(x);