summaryrefslogtreecommitdiff
path: root/lib/getopt1.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/getopt1.c')
-rw-r--r--lib/getopt1.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/getopt1.c b/lib/getopt1.c
index 7cf41c862f..fb2a8f5a7b 100644
--- a/lib/getopt1.c
+++ b/lib/getopt1.c
@@ -141,11 +141,11 @@ main (int argc, char **argv)
break;
case 'c':
- printf ("option c with value `%s'\n", optarg);
+ printf ("option c with value '%s'\n", optarg);
break;
case 'd':
- printf ("option d with value `%s'\n", optarg);
+ printf ("option d with value '%s'\n", optarg);
break;
case '?':