From 80fab638f1136ae9939409b48c2297b725745c00 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 21 Mar 1995 03:50:10 +0000 Subject: [PATCH] merge with 1.11.e --- src/sort.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/sort.c b/src/sort.c index a74f05992b..3c0b3a5da3 100644 --- a/src/sort.c +++ b/src/sort.c @@ -100,17 +100,17 @@ static struct month /* Initial buffer size for in core sorting. Will not grow unless a line longer than this is seen. */ -static int sortalloc = 4 * 1024 * 1024; +static int sortalloc = 512 * 1024; /* Initial buffer size for in core merge buffers. Bear in mind that up to NMERGE * mergealloc bytes may be allocated for merge buffers. */ -static int mergealloc = 64 * 1024; +static int mergealloc = 16 * 1024; /* Guess of average line length. */ static int linelength = 30; /* Maximum number of elements for the array(s) of struct line's, in bytes. */ -#define LINEALLOC (1024 * 1024) +#define LINEALLOC (256 * 1024) /* Prefix for temporary file names. */ static char *temp_file_prefix; -- 2.47.3