diff options
Diffstat (limited to 'jimregexp.c')
-rw-r--r-- | jimregexp.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/jimregexp.c b/jimregexp.c index 2f57caf..efc56a1 100644 --- a/jimregexp.c +++ b/jimregexp.c @@ -1095,8 +1095,7 @@ int regexec(regex_t *preg, const char *string, size_t nmatch, regmatch_t pmat goto nextline; } while (1) { - int ret = regtry(preg, string); - if (ret) { + if (regtry(preg, string)) { return REG_NOERROR; } if (*string) { |