diff options
Diffstat (limited to 'core/compress.c')
| -rw-r--r-- | core/compress.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/core/compress.c b/core/compress.c index b45a583..8790011 100644 --- a/core/compress.c +++ b/core/compress.c @@ -5,7 +5,9 @@ struct DeflateParams { size_t size; Bytef *in; Bytef *out; +#if defined(THREAD_GAP) uint8_t tgap[THREAD_GAP]; +#endif }; struct InflateParams { @@ -14,7 +16,9 @@ struct InflateParams { size_t size; Bytef *in; Bytef *out; +#if defined(THREAD_GAP) uint8_t tgap[THREAD_GAP]; +#endif }; int comp_deflate(struct DeflateParams *params) { |
