summaryrefslogtreecommitdiff
path: root/src/sort.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sort.c')
-rw-r--r--src/sort.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sort.c b/src/sort.c
index 166d8db95..eb480ae0e 100644
--- a/src/sort.c
+++ b/src/sort.c
@@ -107,17 +107,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 = 524288;
+static int sortalloc = 4 * 1024 * 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 = 16384;
+static int mergealloc = 64 * 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 262144
+#define LINEALLOC (1024 * 1024)
/* Prefix for temporary file names. */
static char *temp_file_prefix;