diff options
author | Alan Coopersmith <alan.coopersmith@oracle.com> | 2010-11-20 17:33:52 -0800 |
---|---|---|
committer | Sung-Jin Park <sj76.park@samsung.com> | 2013-09-02 23:38:20 -0400 |
commit | 302e88c9cf3858968c87ee8ca7d0fcff167d338f (patch) | |
tree | 1ddc4fc705efdc1f7e3858a1c25449f2df9837fe | |
parent | e668f9cb12f2eece57b2f0fa6f8004049f5d0b81 (diff) | |
download | xeyes-302e88c9cf3858968c87ee8ca7d0fcff167d338f.tar.gz xeyes-302e88c9cf3858968c87ee8ca7d0fcff167d338f.tar.bz2 xeyes-302e88c9cf3858968c87ee8ca7d0fcff167d338f.zip |
Make usage message fit into 80-column lines
Change-Id: Ib57f672b15c8533d9f89cffe18a2c52c436df6cf
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
-rw-r--r-- | xeyes.c | 17 |
1 files changed, 7 insertions, 10 deletions
@@ -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); } |