diff options
| author | Ben Harris <bjh21@bjh21.me.uk> | 2023-02-18 20:23:23 +0000 |
|---|---|---|
| committer | Ben Harris <bjh21@bjh21.me.uk> | 2023-02-18 20:23:23 +0000 |
| commit | fccd2a55e705a991f22f1aa393c9324846d80515 (patch) | |
| tree | 5314bd3feb0ce7254a5f040ce332cdc5437f6349 | |
| parent | a35405ca35914b7573d63d5ea377da8ee984011b (diff) | |
| download | puzzles-fccd2a55e705a991f22f1aa393c9324846d80515.zip puzzles-fccd2a55e705a991f22f1aa393c9324846d80515.tar.gz puzzles-fccd2a55e705a991f22f1aa393c9324846d80515.tar.bz2 puzzles-fccd2a55e705a991f22f1aa393c9324846d80515.tar.xz | |
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.
| -rw-r--r-- | fuzzpuzz.c | 1 |
1 files changed, 0 insertions, 1 deletions
@@ -161,7 +161,6 @@ int main(int argc, char **argv) } else { fprintf(stderr, "%s\n", err); ret = 1; - continue; } } return ret; |