From 6d225cc44104306bac5d32c41734fefc1af95614 Mon Sep 17 00:00:00 2001 From: Paul Oliver Date: Thu, 4 Jun 2026 17:59:17 +0200 Subject: Adds heatmaps (WIP) --- core/compress.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'core/compress.c') 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) { -- cgit v1.2.1