[fc-match] Fix list of getopt options in --help

This commit is contained in:
Behdad Esfahbod 2008-08-12 23:44:44 -04:00
parent 43291847c5
commit 88261bafff
1 changed files with 2 additions and 2 deletions

View File

@ -66,10 +66,10 @@ extern int optind, opterr, optopt;
static void usage (char *program)
{
#if HAVE_GETOPT_LONG
fprintf (stderr, "usage: %s [-svV?] [--sort] [--all] [--verbose] [--version] [--help] [pattern]\n",
fprintf (stderr, "usage: %s [-savV?] [--sort] [--all] [--verbose] [--version] [--help] [pattern]\n",
program);
#else
fprintf (stderr, "usage: %s [-svV?] [pattern]\n",
fprintf (stderr, "usage: %s [-savV?] [pattern]\n",
program);
#endif
fprintf (stderr, "List fonts matching [pattern]\n");