summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-20 17:33:52 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2010-11-20 17:33:52 -0800
commitcf26a29230cd3ccd79fc8c113dab12a47e244f7a (patch)
tree1ddc4fc705efdc1f7e3858a1c25449f2df9837fe
parentf6a9256db2c463f73982c79378b563d92a6ff180 (diff)
Make usage message fit into 80-column lines
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r--xeyes.c17
1 files changed, 7 insertions, 10 deletions
diff --git a/xeyes.c b/xeyes.c
index 2a8235d..c58436d 100644
--- a/xeyes.c
+++ b/xeyes.c
@@ -47,18 +47,15 @@ static void
usage(void)
{
fprintf(stderr,
-"usage: xeyes\n");
- fprintf (stderr,
-" [-geometry [{width}][x{height}][{+-}{xoff}[{+-}{yoff}]]] [-display [{host}]:[{vs}]]\n");
- fprintf(stderr,
-" [-fg {color}] [-bg {color}] [-bd {color}] [-bw {pixels}]");
- fprintf(stderr, " [-shape | +shape]");
- fprintf(stderr, "\n");
- fprintf(stderr,
-" [-outline {color}] [-center {color}] [-backing {backing-store}] [-distance]\n");
+ "usage: xeyes\n"
+ " [-display [{host}]:[{vs}]]\n"
+ " [-geometry [{width}][x{height}][{+-}{xoff}[{+-}{yoff}]]]\n"
+ " [-fg {color}] [-bg {color}] [-bd {color}] [-bw {pixels}]\n"
+ " [-shape | +shape] [-outline {color}] [-center {color}]\n"
+ " [-backing {backing-store}] [-distance]\n");
#ifdef XRENDER
fprintf(stderr,
-" [-render | +render]\n");
+ " [-render | +render]\n");
#endif
exit(1);
}