summaryrefslogtreecommitdiff
path: root/usr.bin/getopt/getopt.c
diff options
context:
space:
mode:
authorMartin Cracauer <cracauer@FreeBSD.org>1999-04-03 22:24:36 +0000
committerMartin Cracauer <cracauer@FreeBSD.org>1999-04-03 22:24:36 +0000
commit18b3ba267cff8d71364cbabb5429eccf1e79bba4 (patch)
treeedf61f73f2cd6f9356deb378c2911581455afaf4 /usr.bin/getopt/getopt.c
parent4fe88fe6374ee0fd17b670ac28b16cf1c9790832 (diff)
Notes
Diffstat (limited to 'usr.bin/getopt/getopt.c')
-rw-r--r--usr.bin/getopt/getopt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/getopt/getopt.c b/usr.bin/getopt/getopt.c
index 060e2c9ce17f..19c21f853baf 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;