diff options
Diffstat (limited to 'util-linux/getopt.c')
-rw-r--r-- | util-linux/getopt.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/util-linux/getopt.c b/util-linux/getopt.c index e3b051388..032d0dc6b 100644 --- a/util-linux/getopt.c +++ b/util-linux/getopt.c @@ -305,8 +305,8 @@ static const char *shortopts="+ao:l:n:qQs:Tu"; int getopt_main(int argc, char *argv[]) { - char *optstr=NULL; - char *name=NULL; + const char *optstr = NULL; + const char *name = NULL; int opt; int compatible=0; @@ -340,14 +340,14 @@ int getopt_main(int argc, char *argv[]) break; case 'o': free(optstr); - optstr=bb_xstrdup(optarg); + optstr = optarg; break; case 'l': add_long_options(optarg); break; case 'n': free(name); - name=bb_xstrdup(optarg); + name = optarg; break; case 'q': quiet_errors=1; |