From 23c2b99e9d23e726ede9442728272616e66d416f Mon Sep 17 00:00:00 2001 From: Paul Smith Date: Sun, 4 Mar 2012 00:24:20 +0000 Subject: Convert all "`'" quotes to "''" per new GNU Coding Standard guidelines. Fixes Savannah bug #34530. --- getopt1.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'getopt1.c') diff --git a/getopt1.c b/getopt1.c index 7e90abc..a0639a2 100644 --- a/getopt1.c +++ b/getopt1.c @@ -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 '?': -- cgit v1.2.3