Skip to content

Commit

Permalink
Fix long arguments definitions
Browse files Browse the repository at this point in the history
  • Loading branch information
stdvar committed Sep 5, 2024
1 parent 548174b commit 960ddfe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sonixflasher.c
Original file line number Diff line number Diff line change
Expand Up @@ -332,9 +332,9 @@ int main(int argc, char* argv[])
{"help", no_argument, 0, 'h'},
{"version", no_argument, 0, 'V'},
{"vidpid", required_argument, NULL, 'v'},
{"offset", optional_argument, NULL, 'o'},
{"offset", required_argument, NULL, 'o'},
{"file", required_argument, NULL, 'f'},
{"jumploader", required_argument, NULL, 'j'},
{"jumploader", no_argument, 0, 'j'},
{"reboot", required_argument, NULL, 'r'},
{NULL,0,0,0}
};
Expand Down

0 comments on commit 960ddfe

Please sign in to comment.