summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-01-03 00:07:16 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-01-03 00:07:16 -0800
commitb73e3de2d8a192d64f22fd2f450741cba2b7ee18 (patch)
treefc43899ab20c56ba908c5804fa892e2d85c7a73b
parentf82c76db93e191f5d6dfc2b07333a2b22dc52875 (diff)
Combine usage message strings
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--bdftopcf.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bdftopcf.c b/bdftopcf.c
index f31b275..e8f5954 100644
--- a/bdftopcf.c
+++ b/bdftopcf.c
@@ -137,10 +137,10 @@ main(int argc, char *argv[])
if (input_name) {
usage:
fprintf(stderr,
- "usage: %s [-p#] [-u#] [-m] [-l] [-M] [-L] [-t] [-i] [-o pcf file] [bdf file]\n",
+ "usage: %s [-p#] [-u#] [-m] [-l] [-M] [-L] [-t] [-i] [-o pcf file] [bdf file]\n"
+ " where # for -p is 1, 2, 4, or 8\n"
+ " and # for -s is 1, 2, or 4\n",
program_name);
- fprintf(stderr, " where # for -p is 1, 2, 4, or 8\n");
- fprintf(stderr, " and # for -s is 1, 2, or 4\n");
exit(1);
}
input_name = argv[0];