diff options
Diffstat (limited to 'ext/-test-/bignum/export.c')
-rw-r--r-- | ext/-test-/bignum/export.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/-test-/bignum/export.c b/ext/-test-/bignum/export.c index 33cc2d0a42..56e4f9f6dc 100644 --- a/ext/-test-/bignum/export.c +++ b/ext/-test-/bignum/export.c @@ -7,7 +7,7 @@ rb_int_export_m(VALUE val, VALUE buf, VALUE wordorder, VALUE wordsize_arg, VALUE int sign; size_t count = 0; void *ret; - size_t wordsize = NUM2SIZE(wordsize_arg); + size_t wordsize = NUM2SIZET(wordsize_arg); if (!NIL_P(buf)) { StringValue(buf); @@ -19,7 +19,7 @@ rb_int_export_m(VALUE val, VALUE buf, VALUE wordorder, VALUE wordsize_arg, VALUE &sign, &count, NIL_P(buf) ? NULL : RSTRING_PTR(buf), count, NUM2INT(wordorder), wordsize, NUM2INT(endian), NUM2INT(nails)); - return rb_ary_new_from_args(3, INT2NUM(sign), ret ? rb_str_new(ret, wordsize * count) : Qnil, SIZE2NUM(count)); + return rb_ary_new_from_args(3, INT2NUM(sign), ret ? rb_str_new(ret, wordsize * count) : Qnil, SIZET2NUM(count)); } void |