mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
remove unused argc check
This commit is contained in:
+1
-1
@@ -348,7 +348,7 @@ mrb_get_args(mrb_state *mrb, const char *format, ...)
|
||||
{
|
||||
mrb_value *p;
|
||||
p = va_arg(ap, mrb_value*);
|
||||
*p = (argc > i) ? *sp : mrb_nil_value();
|
||||
*p = *sp;
|
||||
i++; sp++;
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user