diff options
Diffstat (limited to 'shell')
-rw-r--r-- | shell/bbsh.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/bbsh.c b/shell/bbsh.c index 4fd071404..09c4bd9a2 100644 --- a/shell/bbsh.c +++ b/shell/bbsh.c @@ -204,7 +204,7 @@ int bbsh_main(int argc, char **argv) char *command=NULL; FILE *f; - getopt32(argc, argv, "c:", &command); + getopt32(argv, "c:", &command); f = argv[optind] ? xfopen(argv[optind],"r") : NULL; if (command) handle(command); |