sbase

suckless unix tools
git clone git://git.2f30.org/sbase
Log | Files | Refs | README | LICENSE

commit 3423752465a82b357421169f48baab98a3ba405f
parent 0e2f50988310356b2764b911980476ea514a312f
Author: sin <sin@2f30.org>
Date:   Sun,  4 Oct 2015 16:48:05 +0100

Lint is dead - remove unnecessary cast to (void)

Diffstat:
Mgetconf.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/getconf.c b/getconf.c @@ -240,7 +240,7 @@ main(int argc, char *argv[]) ARGBEGIN { case 'v': /* ignore */ - (void)(EARGF(usage())); + EARGF(usage()); break; } ARGEND;