sbase

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

commit 11c078d116b828732716223101f6e72e1bb52e34
parent af1fb0c9c299166ef398d27e0f47361418d4033c
Author: sin <sin@2f30.org>
Date:   Mon, 11 Nov 2013 11:27:18 +0000

Fix styling issue in test(1)

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

diff --git a/test.c b/test.c @@ -108,7 +108,9 @@ binary(const char *arg1, const char *op, const char *arg2) int i; long narg1, narg2; enum operator { EQ, GE, GT, LE, LT, NE, STREQ, STRNE } oper; - char *optexts[] = { "-eq", "-ge", "-gt", "-le", "-lt", "-ne", + char *optexts[] = { + "-eq", "-ge", "-gt", + "-le", "-lt", "-ne", "=", "!=" };