Silence warnings caused by implicit type casting.

parent 92dcfbaa
...@@ -367,7 +367,7 @@ mrb_str_succ_bang(mrb_state *mrb, mrb_value self) ...@@ -367,7 +367,7 @@ mrb_str_succ_bang(mrb_state *mrb, mrb_value self)
unsigned char *p, *e, *b, *t; unsigned char *p, *e, *b, *t;
const char *prepend; const char *prepend;
struct RString *s = mrb_str_ptr(self); struct RString *s = mrb_str_ptr(self);
size_t l; mrb_int l;
if (RSTRING_LEN(self) == 0) if (RSTRING_LEN(self) == 0)
return self; return self;
......
...@@ -192,7 +192,7 @@ ary_expand_capa(mrb_state *mrb, struct RArray *a, size_t len) ...@@ -192,7 +192,7 @@ ary_expand_capa(mrb_state *mrb, struct RArray *a, size_t len)
if (capa > (size_t)a->aux.capa) { if (capa > (size_t)a->aux.capa) {
mrb_value *expanded_ptr = (mrb_value *)mrb_realloc(mrb, a->ptr, sizeof(mrb_value)*capa); mrb_value *expanded_ptr = (mrb_value *)mrb_realloc(mrb, a->ptr, sizeof(mrb_value)*capa);
a->aux.capa = capa; a->aux.capa = (mrb_int)capa;
a->ptr = expanded_ptr; a->ptr = expanded_ptr;
} }
} }
......
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