Fix syntax error in sort(1)

Somehow went unnoticed...
This commit is contained in:
FRIGN 2015-03-23 20:30:07 +01:00
parent 4750b233ce
commit df8529f0a1
1 changed files with 1 additions and 1 deletions

2
sort.c
View File

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