tMerge pull request #31 from ix/master - wmutils - X windows manipulation utilities
(HTM) git clone git://z3bra.org/wmutils
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit ed70cc611a30bf655870030747e409d1a1a6c3c2
(DIR) parent 7b86e8b8e80cd91e7cd7c4e2b8c8be51db7e1c91
(HTM) Author: dead cat <dcat@users.noreply.github.com>
Date: Sat, 30 Jan 2016 22:59:26 +0100
Merge pull request #31 from ix/master
print newlines with help text for wrs/wmv
Diffstat:
M wmv.c | 2 +-
M wrs.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
(DIR) diff --git a/wmv.c b/wmv.c
t@@ -21,7 +21,7 @@ static void move(xcb_window_t, int, int, int);
static void
usage(char *name)
{
- fprintf(stderr, "usage: %s [-a] <x> <y> <win>", name);
+ fprintf(stderr, "usage: %s [-a] <x> <y> <win>\n", name);
exit(1);
}
(DIR) diff --git a/wrs.c b/wrs.c
t@@ -21,7 +21,7 @@ static void resize(xcb_window_t, int, int, int);
static void
usage(char *name)
{
- fprintf(stderr, "usage: %s [-a] <x> <y> <wid> [wid..]", name);
+ fprintf(stderr, "usage: %s [-a] <x> <y> <wid> [wid..]\n", name);
exit(1);
}