(suggest_asking_for_help): Fix having macros in a printf statement.

This commit is contained in:
Juanma Barranquero 2003-07-28 22:09:47 +00:00
parent 48c9ce10fb
commit 9d6baf7cbd

View file

@ -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);
}