Skip to content

Commit

Permalink
Updated install script
Browse files Browse the repository at this point in the history
  • Loading branch information
mcfriend99 committed Feb 23, 2024
1 parent 874eaba commit cccd144
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/blade.c
Expand Up @@ -251,8 +251,8 @@ int main(int argc, char *argv[]) {

if (argc > 1) {
int opt;
while ((opt = getopt(argc, argv, "hdeb:vg:wc:--")) != -1) {
printf("Opt = %d\n", opt);
while ((opt = getopt(argc, argv, "hdeb:vg:wc:-")) != -1) {
printf("Opt = %d, %d\n", opt, optind);
switch (opt) {
case 'h': {
show_usage(argv, false);
Expand Down

0 comments on commit cccd144

Please sign in to comment.