sbase

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

commit df8529f0a1143b2972bcdb680c59bb8fb7426a36
parent 4750b233cedcc599652f0ade4a26a76bc3cf7644
Author: FRIGN <dev@frign.de>
Date:   Mon, 23 Mar 2015 20:30:07 +0100

Fix syntax error in sort(1)

Somehow went unnoticed...

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

diff --git a/sort.c b/sort.c @@ -114,7 +114,7 @@ linecmp(const char **a, const char **b) static int parse_flags(char **s, int *flags, int bflag) { - while (isalpha((int)**s)) + while (isalpha((int)**s)) { switch (*((*s)++)) { case 'b': *flags |= bflag;