summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorodynik <odynik.ee@gmail.com>2022-01-28 12:15:41 +0200
committerGitHub <noreply@github.com>2022-01-28 13:15:41 +0300
commit85e59be1c656b946a1fcd19404cb0df6095e7dfb (patch)
treeaab433928e7375b8552ebca9ff68605a1fd86743
parentb2a63a60b6da41e90a4925c186d4e62ea973f52a (diff)
[Stream Compression] - Bug fix #12043 - lz4.h compilation error - compile from source (#12049)
-rw-r--r--streaming/compression.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/streaming/compression.c b/streaming/compression.c
index 917f05bd66..93810aaed6 100644
--- a/streaming/compression.c
+++ b/streaming/compression.c
@@ -1,7 +1,7 @@
#include "rrdpush.h"
-#include "lz4.h"
#ifdef ENABLE_COMPRESSION
+#include "lz4.h"
#define LZ4_MAX_MSG_SIZE 0x4000
#define LZ4_STREAM_BUFFER_SIZE (0x10000 + LZ4_MAX_MSG_SIZE)