Commit 53f9c27e 53f9c27e722dac305bf11b1bb628848166a9e94c by Sergey Poznyakoff

Minor fix in builtin_match().

1 parent 71269424
......@@ -483,7 +483,7 @@ static void
builtin_match (struct mh_machine *mach)
{
mach->arg_num = strstr (strobj_ptr (&mach->reg_str),
strobj_ptr (&mach->arg_str));
strobj_ptr (&mach->arg_str)) != NULL;
}
static void
......