Fix type of argument passed to mrb_get_args.

This commit is contained in:
take_cheeze
2014-07-19 21:37:13 +09:00
parent fa39825b1b
commit 689541d0fb
2 changed files with 6 additions and 4 deletions
+1 -1
View File
@@ -86,7 +86,7 @@ mrb_file_s_unlink(mrb_state *mrb, mrb_value obj)
{
mrb_value *argv;
mrb_value pathv;
int argc, i;
mrb_int argc, i;
const char *path;
mrb_get_args(mrb, "*", &argv, &argc);