undo whitespace changes

pull/117/head
kaleb-himes 2019-01-21 13:21:36 -07:00
parent e36fd6eb65
commit 95e67cfe0a
1 changed files with 2 additions and 2 deletions

View File

@ -711,11 +711,11 @@ int wolfCLU_checkForArg(char* searchTerm, int length, int argc, char** argv)
} else if (XSTRNCMP(searchTerm, "-help", length) == 0 &&
XSTRNCMP(argv[i], "-help", XSTRLEN(argv[i])) == 0 &&
(int) XSTRLEN(argv[i]) > 0) {
ret = 1;
return 1;
} else if (XSTRNCMP(argv[i], searchTerm, length) == 0 &&
XSTRNCMP(argv[i], searchTerm, XSTRLEN(argv[i])) == 0) {
ret = i;
if (argFound == 1) {
printf("ERROR: argument found twice: \"%s\"\n", searchTerm);