tFixed a missing argument in killw - wmutils - X windows manipulation utilities
(HTM) git clone git://z3bra.org/wmutils
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit b45f55ba9182ed4d662eb307524567037a516ec3
(DIR) parent 3ed231bbed37c4f5dbf6702b0a2fb037672bd2e4
(HTM) Author: z3bra <willy@mailoo.org>
Date: Fri, 19 Dec 2014 19:13:28 +0100
Fixed a missing argument in killw
Diffstat:
M killw.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
(DIR) diff --git a/killw.c b/killw.c
t@@ -12,7 +12,7 @@ static void usage (const char *);
static void
usage (const char *name)
{
- fprintf(stderr, "usage: %s <wid> [wid...]\n");
+ fprintf(stderr, "usage: %s <wid> [wid...]\n", name);
exit(1);
}