From: Jim Meyering Date: Sat, 6 Dec 1997 12:13:52 +0000 (+0000) Subject: (fillbuf): split longer-than-80-char line X-Git-Tag: FILEUTILS-3_16g~40 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=6ee3c1a91a9228dc7ae196706202b423c96bd4cf;p=thirdparty%2Fcoreutils.git (fillbuf): split longer-than-80-char line --- diff --git a/src/sort.c b/src/sort.c index c2d084499b..9efe6c265b 100644 --- a/src/sort.c +++ b/src/sort.c @@ -634,7 +634,8 @@ fillbuf (struct buffer *buf, FILE *fp) memmove (buf->buf, buf->buf + buf->used - buf->left, buf->left); buf->used = buf->left; - while (!feof (fp) && (buf->used == 0 || !memchr (buf->buf, eolchar, buf->used))) + while (!feof (fp) && (buf->used == 0 + || !memchr (buf->buf, eolchar, buf->used))) { if (buf->used == buf->alloc) {