[hackers] [sbase] Fix syntax error in sort(1) || FRIGN
commit cf103f0c3fb15ca30ff7a04545c28b61bd8720a8
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 Mon Mar 23 2015 - 21:03:17 CET
This archive was generated by hypermail 2.3.0
: Mon Mar 23 2015 - 21:12:11 CET