diff options
author | Omar Polo <op@omarpolo.com> | 2024-01-08 08:38:47 +0000 |
---|---|---|
committer | Omar Polo <op@omarpolo.com> | 2024-01-08 08:38:47 +0000 |
commit | fd48b7c0c4093c710b2d692b7abca89b0dbf0a33 (patch) | |
tree | c2205e3961b8190be124df3b47dcb1fd5f5065f7 /titan.c | |
parent | ac46710a4b3b7b1bc5f966117cb4b713063dce81 (diff) |
titan: usage and exit on unknown flags
Diffstat (limited to 'titan.c')
-rw-r--r-- | titan.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -257,6 +257,8 @@ main(int argc, char **argv) case 't': token = optarg; break; + default: + usage(); } } argc -= optind; |