summaryrefslogtreecommitdiff
path: root/src/sort.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1996-11-02 05:14:21 +0000
committerJim Meyering <jim@meyering.net>1996-11-02 05:14:21 +0000
commit950325ee23f9273b5074b5f60290546059bf93a8 (patch)
tree5a2f6d49ae4e914c08564195d56dc137f018db42 /src/sort.c
parentc941e1742db3e2cce9de046f29fb12444f50ca1a (diff)
downloadcoreutils-950325ee23f9273b5074b5f60290546059bf93a8.tar.xz
.
Diffstat (limited to 'src/sort.c')
-rw-r--r--src/sort.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/sort.c b/src/sort.c
index ade06f2f0..310bebef0 100644
--- a/src/sort.c
+++ b/src/sort.c
@@ -1252,8 +1252,8 @@ checkfp (FILE *fp)
if (prev_line->length + 1 > alloc)
{
do
- {
- alloc *= 2;
+ {
+ alloc *= 2;
}
while (alloc < prev_line->length + 1);
temp.text = xrealloc (temp.text, alloc);