diff options
author | Dirk Engling <erdgeist@erdgeist.org> | 2014-02-21 01:08:16 +0100 |
---|---|---|
committer | Dirk Engling <erdgeist@erdgeist.org> | 2014-02-21 01:08:16 +0100 |
commit | 53cb7f13e8134f973b9ff24d0bbe7510d23fb08c (patch) | |
tree | 716e29c3de736819f795768c7eae41077826dc9a /src | |
parent | d649292d1fd9c9ea89a922fdbcdcd2464e900350 (diff) |
Be less memory hungry with on-stack allocations
Diffstat (limited to 'src')
-rw-r--r-- | src/export/split_version_2.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 @@ | |||
6 | #include <string.h> | 6 | #include <string.h> |
7 | 7 | ||
8 | int main( int argc, char **args ) { | 8 | int main( int argc, char **args ) { |
9 | char table[64], f[1024*1024*16]; | 9 | char table[64], f[1024*1024]; |
10 | int outfiles[64], i, off, base = 0; | 10 | int outfiles[64], i, off, base = 0; |
11 | uint32_t fixed_columns = 0; | 11 | uint32_t fixed_columns = 0; |
12 | 12 | ||