index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Gerardo Exequiel Pozzi <vmlinuz386@yahoo.com.ar> | 2013-01-03 18:48:53 -0300 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-01-04 21:49:38 +1000 |
commit | 86eefc1a3a3419bb41b2acab521a476db0d2a7ce (patch) | |
tree | 8409b0bbc5e4fe95a0ba8dad7f2892205dd7e2ee /src/util | |
parent | b5709b8171c5be82ebb3651680ae3698b7513f43 (diff) |
-rw-r--r-- | src/util/pacsort.c | 2 |
diff --git a/src/util/pacsort.c b/src/util/pacsort.c index 7275cc77..c7b8c940 100644 --- a/src/util/pacsort.c +++ b/src/util/pacsort.c @@ -205,7 +205,7 @@ static int splitfile(FILE *stream, struct buffer_t *buffer, struct list_t *list) while(!feof(stream)) { /* check if a read of BUFSIZ chars will overflow */ - if (buffer->len + BUFSIZ + 1 >= buffer->maxlen) { + if(buffer->len + BUFSIZ + 1 >= buffer->maxlen) { if(buffer_grow(buffer) != 0) { return 1; } |