From 88261bafff30ec02b5a2180f1f9b786c8ff44e3d Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 12 Aug 2008 23:44:44 -0400 Subject: [PATCH] [fc-match] Fix list of getopt options in --help --- fc-match/fc-match.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fc-match/fc-match.c b/fc-match/fc-match.c index 8e133c6..05bf774 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");