diff options
author | Behdad Esfahbod <behdad@behdad.org> | 2008-08-12 23:44:44 -0400 |
---|---|---|
committer | Behdad Esfahbod <behdad@behdad.org> | 2009-02-13 16:53:55 -0800 |
commit | 88261bafff30ec02b5a2180f1f9b786c8ff44e3d (patch) | |
tree | 6030e51e20baee5d99f9a1c08663a727bb7c6f05 /fc-match | |
parent | 43291847c58002fca99984dcec4f1bbbb0d0f61d (diff) |
[fc-match] Fix list of getopt options in --help
Diffstat (limited to 'fc-match')
-rw-r--r-- | fc-match/fc-match.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fc-match/fc-match.c b/fc-match/fc-match.c index 8e133c64..05bf7746 100644 --- a/fc-match/fc-match.c +++ b/fc-match/fc-match.c @@ -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"); |