Revert "Stop persistent-mode fuzzpuzz exiting prematurely"

That was completely wrong: a "continue" at the end of the loop is
unnecessary.

This reverts commit b91f9824b6f73290051025317f3387c7212fa05f.
This commit is contained in:
Ben Harris
2023-02-18 20:23:23 +00:00
parent a35405ca35
commit fccd2a55e7

View File

@ -161,7 +161,6 @@ int main(int argc, char **argv)
} else { } else {
fprintf(stderr, "%s\n", err); fprintf(stderr, "%s\n", err);
ret = 1; ret = 1;
continue;
} }
} }
return ret; return ret;