mirror of git://sourceware.org/git/glibc.git
manual: tidy the longopt.c example
- Change longopt.c's backticks to single quotes - puts() does not use format specifiers Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
This commit is contained in:
parent
ee33752b5d
commit
87b5a759f4
|
@ -66,23 +66,23 @@ main (int argc, char **argv)
|
|||
break;
|
||||
|
||||
case 'a':
|
||||
puts ("option -a\n");
|
||||
puts ("option -a");
|
||||
break;
|
||||
|
||||
case 'b':
|
||||
puts ("option -b\n");
|
||||
puts ("option -b");
|
||||
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 'f':
|
||||
printf ("option -f with value `%s'\n", optarg);
|
||||
printf ("option -f with value '%s'\n", optarg);
|
||||
break;
|
||||
|
||||
case '?':
|
||||
|
|
Loading…
Reference in New Issue