aboutsummaryrefslogtreecommitdiff
path: root/debug/full_flush.c
diff options
context:
space:
mode:
Diffstat (limited to 'debug/full_flush.c')
-rw-r--r--debug/full_flush.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/debug/full_flush.c b/debug/full_flush.c
index 67442b15..227f7376 100644
--- a/debug/full_flush.c
+++ b/debug/full_flush.c
@@ -14,6 +14,8 @@
#include "lzma.h"
#include <stdio.h>
+#define CHUNK 64
+
static lzma_stream strm = LZMA_STREAM_INIT;
static FILE *file_in;
@@ -22,7 +24,6 @@ static FILE *file_in;
static void
encode(size_t size, lzma_action action)
{
- static const size_t CHUNK = 64;
uint8_t in[CHUNK];
uint8_t out[CHUNK];
lzma_ret ret;