diff options
-rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 24f3288..dc3dd82 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -182,7 +182,7 @@ int main(int argc, char *argv[]) break; fprintf(stderr, "Unknown action passed. Possible actions:\n\t"); - for (size_t i = 0; ARRAY_LENGTH(actions); i++) + for (size_t i = 0; i < ARRAY_LENGTH(actions); i++) fprintf(stderr, " %s ", actions[i].name); help(argv); |