summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-20 18:09:30 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-20 18:09:30 -0800
commit04208bd63c1e81a2fada019bbf986c4cd93d0272 (patch)
tree8489239d54848cb4228f688412587dc8c27cbcc9
parente56d87af20b96113dc40510811cadff028fe911f (diff)
Combine usage message into a single string
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--xkbevd.c23
1 files changed, 10 insertions, 13 deletions
diff --git a/xkbevd.c b/xkbevd.c
index 8ea7987..1a4dfb6 100644
--- a/xkbevd.c
+++ b/xkbevd.c
@@ -81,22 +81,19 @@ XkbDescPtr xkb= NULL;
/***====================================================================***/
-#define M(m) fprintf(stderr,(m))
-#define M1(m,a) fprintf(stderr,(m),(a))
-
static void
Usage(int argc, char *argv[])
{
- M1("Usage: %s [options]...\n",argv[0]);
- M("Legal options:\n");
- M("-?,-help Print this message\n");
- M("-cfg <file> Specify a config file\n");
- M("-sc <cmd> Specify the command to play sounds\n");
- M("-sd <dir> Specify the root directory for sound files\n");
- M("-d[isplay] <dpy> Specify the display to watch\n");
- M("-bg Run in background\n");
- M("-synch Force synchronization\n");
- M("-v Print verbose messages\n");
+ fprintf(stderr, "Usage: %s [options]...\n%s", argv[0],
+ "Legal options:\n"
+ "-?, -help Print this message\n"
+ "-cfg <file> Specify a config file\n"
+ "-sc <cmd> Specify the command to play sounds\n"
+ "-sd <dir> Specify the root directory for sound files\n"
+ "-d[isplay] <dpy> Specify the display to watch\n"
+ "-bg Run in background\n"
+ "-synch Force synchronization\n"
+ "-v Print verbose messages\n");
return;
}