tMerge pull request #13 from adbjesus/wmp_args_fix - wmutils - X windows manipulation utilities
HTML git clone git://z3bra.org/wmutils
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit b2087fbedc4000f01f5dba547833a0b241ee92b9
DIR parent 3a7bda6f61e31d761bb96d65cc77780214adf547
HTML Author: dead cat <dcat@users.noreply.github.com>
Date: Fri, 26 Dec 2014 00:18:10 +0100
Merge pull request #13 from adbjesus/wmp_args_fix
Fixed argc verification in wmp
Diffstat:
M wmp.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
---
DIR diff --git a/wmp.c b/wmp.c
t@@ -39,7 +39,7 @@ main(int argc, char **argv)
char *argv0;
int mode = ABSOLUTE;
- if (argc != 2)
+ if (argc != 4)
usage(argv[0]);
ARGBEGIN {