From caf8a9b2b301aba06735d403317b75b41df59bfe Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sat, 26 May 2012 16:14:36 -0700 Subject: Merge from gnulib. Fixes: debbugs:11527 --- lib/getopt1.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'lib/getopt1.c') diff --git a/lib/getopt1.c b/lib/getopt1.c index 36568024cc2..fb2a8f5a7b1 100644 --- a/lib/getopt1.c +++ b/lib/getopt1.c @@ -1,5 +1,5 @@ /* getopt_long and getopt_long_only entry points for GNU getopt. - Copyright (C) 1987-1994, 1996-1998, 2004, 2006, 2009-2011 Free Software + Copyright (C) 1987-1994, 1996-1998, 2004, 2006, 2009-2012 Free Software Foundation, Inc. This file is part of the GNU C Library. @@ -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 '?': -- cgit v1.2.1