From d395be138c0661c38f903017c365a30c561c8548 Mon Sep 17 00:00:00 2001 From: akr Date: Sun, 9 Jun 2013 13:03:45 +0000 Subject: Update an error message. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41198 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- bignum.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bignum.c b/bignum.c index ae91f46ad0..cbdfa3a6a2 100644 --- a/bignum.c +++ b/bignum.c @@ -772,7 +772,7 @@ rb_integer_pack(VALUE val, int *signp, void *words, size_t numwords, size_t word validate_integer_pack_format(wordsize, nails, flags); if (SIZE_MAX / wordsize < numwords) - rb_raise(rb_eArgError, "too big count * wordsize: %"PRI_SIZE_PREFIX"u * %"PRI_SIZE_PREFIX"u", numwords, wordsize); + rb_raise(rb_eArgError, "too big numwords * wordsize: %"PRI_SIZE_PREFIX"u * %"PRI_SIZE_PREFIX"u", numwords, wordsize); if (FIXNUM_P(val)) { long v = FIX2LONG(val); -- cgit v1.2.3