pack.c: fix integer signedness mixture.

parent 06b16628
......@@ -383,7 +383,7 @@ static int
pack_w(mrb_state *mrb, mrb_value o, mrb_value str, mrb_int sidx, unsigned int flags)
{
mrb_int n = mrb_integer(o);
mrb_int i;
size_t i;
char *p;
if (n < 0) {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment