diff options
Diffstat (limited to 'usr.bin/getopt/getopt.c')
-rw-r--r-- | usr.bin/getopt/getopt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/getopt/getopt.c b/usr.bin/getopt/getopt.c index 19c21f8..060e2c9 100644 --- a/usr.bin/getopt/getopt.c +++ b/usr.bin/getopt/getopt.c @@ -17,7 +17,7 @@ char *argv[]; break; default: if (optarg != NULL) - printf(" -%c '%s'", c, optarg); + printf(" -%c %s", c, optarg); else printf(" -%c", c); break; |