Minor fix in builtin_match().
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -483,7 +483,7 @@ static void | ... | @@ -483,7 +483,7 @@ static void |
483 | builtin_match (struct mh_machine *mach) | 483 | builtin_match (struct mh_machine *mach) |
484 | { | 484 | { |
485 | mach->arg_num = strstr (strobj_ptr (&mach->reg_str), | 485 | mach->arg_num = strstr (strobj_ptr (&mach->reg_str), |
486 | strobj_ptr (&mach->arg_str)); | 486 | strobj_ptr (&mach->arg_str)) != NULL; |
487 | } | 487 | } |
488 | 488 | ||
489 | static void | 489 | static void | ... | ... |
-
Please register or sign in to post a comment