Update main.cpp

This commit is contained in:
alba4k 2022-06-17 22:02:57 +02:00 committed by GitHub
parent 9c6c5481bb
commit faa1b5a44f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -134,7 +134,7 @@ int main(int argc, char** argv) {
else if (!strcmp(argv[1], "dispatch")) dispatchRequest(argc, argv);
else if (!strcmp(argv[1], "keyword")) keywordRequest(argc, argv);
else if (!strcmp(argv[1], "--batch")) batchRequest(argc, argv);
else if (!strcmp(argv[1], "--help")) printf(USAGE.c_str());
else if (!strcmp(argv[1], "--help")) printf("%s", USAGE.c_str());
else {
printf("%s\n", USAGE.c_str());
return 1;
@ -142,4 +142,4 @@ int main(int argc, char** argv) {
printf("\n");
return 0;
}
}