Commit 53f9c27e 53f9c27e722dac305bf11b1bb628848166a9e94c by Sergey Poznyakoff

Minor fix in builtin_match().

1 parent 71269424
...@@ -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
......