sbase

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

commit 4093341657c67f03b48718647b2cd378e74c14dc
parent 35a114acd539fdd223a6e4ce236a193943ab6c53
Author: sin <sin@2f30.org>
Date:   Sat, 26 Mar 2016 08:17:06 +0000

test: Remove unused variable

Diffstat:
Mtest.c | 1-
1 file changed, 0 insertions(+), 1 deletion(-)

diff --git a/test.c b/test.c @@ -12,7 +12,6 @@ intcmp(char *a, char *b) char *s; int asign = *a == '-' ? -1 : 1; int bsign = *b == '-' ? -1 : 1; - int ret; if (*a == '-' || *a == '+') a += 1; if (*b == '-' || *b == '+') b += 1;