mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
use TRUE/FALSE instead of 1/0
This commit is contained in:
+2
-2
@@ -610,10 +610,10 @@ static int
|
||||
nosplat(node *t)
|
||||
{
|
||||
while (t) {
|
||||
if ((intptr_t)t->car->car == NODE_SPLAT) return 0;
|
||||
if ((intptr_t)t->car->car == NODE_SPLAT) return FALSE;
|
||||
t = t->cdr;
|
||||
}
|
||||
return 1;
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static mrb_sym
|
||||
|
||||
Reference in New Issue
Block a user