Skip to content

Commit

Permalink
Refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
shmuz committed Dec 7, 2024
1 parent 3483ef1 commit 953766b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions far/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -732,8 +732,8 @@ int _cdecl main(int argc, char *argv[])
}
}
if (argc > 1 &&
(strncasecmp(argv[1], "--h", 3) == 0
|| strncasecmp(argv[1], "-h", 2) == 0
(strcasecmp(argv[1], "--help") == 0
|| strcasecmp(argv[1], "-h") == 0
|| strcmp(argv[1], "-?") == 0)) {

print_help(name);
Expand Down

0 comments on commit 953766b

Please sign in to comment.