diff options
Diffstat (limited to 'getopt1.c')
-rw-r--r-- | getopt1.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -149,11 +149,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 '?': |