Commit 492c008b authored by Yukihiro "Matz" Matsumoto's avatar Yukihiro "Matz" Matsumoto

Merge pull request #1021 from monaka/pr-fix-warning-20130316

Fix a warning happens on MRB_INT64 enabled.
parents 7872bee7 11ed7a61
...@@ -2050,7 +2050,7 @@ mrb_cstr_to_inum(mrb_state *mrb, const char *str, int base, int badcheck) ...@@ -2050,7 +2050,7 @@ mrb_cstr_to_inum(mrb_state *mrb, const char *str, int base, int badcheck)
char *end; char *end;
char sign = 1; char sign = 1;
int c; int c;
unsigned int n; unsigned long n;
mrb_int val; mrb_int val;
#undef ISDIGIT #undef ISDIGIT
......
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