[hackers] [sbase] Fix syntax error in sort(1) || FRIGN
commit df8529f0a1143b2972bcdb680c59bb8fb7426a36
Author: FRIGN <dev_AT_frign.de>
Date: Mon Mar 23 20:30:07 2015 +0100
Fix syntax error in sort(1)
Somehow went unnoticed...
diff --git a/sort.c b/sort.c
index cea25aa..87d5d3b 100644
--- a/sort.c
+++ b/sort.c
_AT_@ -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;
Received on Tue Mar 24 2015 - 23:54:21 CET
This archive was generated by hypermail 2.3.0
: Wed Mar 25 2015 - 00:12:12 CET