From df8529f0a1143b2972bcdb680c59bb8fb7426a36 Mon Sep 17 00:00:00 2001 From: FRIGN Date: Mon, 23 Mar 2015 20:30:07 +0100 Subject: [PATCH] Fix syntax error in sort(1) Somehow went unnoticed... --- sort.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sort.c b/sort.c index cea25aa..87d5d3b 100644 --- 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;