[hackers] [sbase] Fix typo breaking functionality in tail || Wolfgang Corcoran-Mathe

From: <git_AT_suckless.org>
Date: Wed, 17 Sep 2014 11:06:56 +0200

commit 7a6af2faba11168c7c83098df0a0b56c53335a0b
Author: Wolfgang Corcoran-Mathe <first.lord.of.teal_AT_gmail.com>
Date: Wed Sep 17 10:05:27 2014 +0100

    Fix typo breaking functionality in tail

diff --git a/tail.c b/tail.c
index 59e68ca..87a08b9 100644
--- a/tail.c
+++ b/tail.c
_AT_@ -60,7 +60,7 @@ dropinit(FILE *fp, const char *str, long n)
         ssize_t len;
         unsigned long i = 0;
 
- while(i < n && ((len = agetline(&buf, &size, fp) != -1)))
+ while(i < n && ((len = agetline(&buf, &size, fp)) != -1))
                 if(len && buf[len - 1] == '\n')
                         i++;
         free(buf);
Received on Wed Sep 17 2014 - 11:06:56 CEST

This archive was generated by hypermail 2.3.0 : Wed Sep 17 2014 - 11:12:23 CEST