Skip to content

Commit

Permalink
Merge pull request #1327 from ArmoredPony/develop
Browse files Browse the repository at this point in the history
Fixed unknown option -u in st-util.
  • Loading branch information
Nightwalker-87 committed Sep 1, 2023
2 parents 0915ee9 + 270efb3 commit 99925c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/st-util/gdb-server.c
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ int32_t parse_options(int32_t argc, char** argv, st_state_t *st) {
int32_t c;
int32_t q;

while ((c = getopt_long(argc, argv, "hv::p:mn", long_options, &option_index)) != -1)
while ((c = getopt_long(argc, argv, "hv::p:mnu", long_options, &option_index)) != -1)
switch (c) {
case 0:
break;
Expand Down

0 comments on commit 99925c6

Please sign in to comment.