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:
Samuel Zeter 2025-03-25 18:00:33 +10:00 committed by Adhemerval Zanella
parent ee33752b5d
commit 87b5a759f4
1 changed files with 5 additions and 5 deletions

View File

@ -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 '?':