From 53cb7f13e8134f973b9ff24d0bbe7510d23fb08c Mon Sep 17 00:00:00 2001 From: Dirk Engling Date: Fri, 21 Feb 2014 01:08:16 +0100 Subject: Be less memory hungry with on-stack allocations --- src/export/split_version_2.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/export/split_version_2.c b/src/export/split_version_2.c index bd85775..2bc48c7 100644 --- a/src/export/split_version_2.c +++ b/src/export/split_version_2.c @@ -6,7 +6,7 @@ #include int main( int argc, char **args ) { - char table[64], f[1024*1024*16]; + char table[64], f[1024*1024]; int outfiles[64], i, off, base = 0; uint32_t fixed_columns = 0; -- cgit v1.2.3