(suggest_asking_for_help): Fix having macros in a printf statement.
This commit is contained in:
parent
48c9ce10fb
commit
9d6baf7cbd
1 changed files with 5 additions and 5 deletions
|
@ -6484,14 +6484,14 @@ pfatal (s1)
|
|||
static void
|
||||
suggest_asking_for_help ()
|
||||
{
|
||||
fprintf (stderr, "\tTry `%s %s' for a complete list of options.\n",
|
||||
progname,
|
||||
|
||||
#ifdef LONG_OPTIONS
|
||||
"--help"
|
||||
fprintf (stderr, "\tTry `%s %s' for a complete list of options.\n",
|
||||
progname, "--help");
|
||||
#else
|
||||
"-h"
|
||||
fprintf (stderr, "\tTry `%s %s' for a complete list of options.\n",
|
||||
progname, "-h");
|
||||
#endif
|
||||
);
|
||||
exit (BAD);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue