aboutsummaryrefslogtreecommitdiff
path: root/src/liblzma/common/stream_buffer_encoder.c
diff options
context:
space:
mode:
authorJia Tan <jiat0218@gmail.com>2023-01-05 20:57:25 +0800
committerJia Tan <jiat0218@gmail.com>2023-01-05 20:57:25 +0800
commit84f9687cbae972c2c342e10bf69f8ec8f70ae111 (patch)
treeef6ad2b9d1c399320bb25d676a7796514ff44bda /src/liblzma/common/stream_buffer_encoder.c
parentAdds test_index_hash to .gitignore. (diff)
downloadxz-84f9687cbae972c2c342e10bf69f8ec8f70ae111.tar.xz
liblzma: Remove common.h include from common/index.h.
common/index.h is needed by liblzma internally and tests. common.h will include and define many things that are not needed by the tests. Also, this prevents include order problems because common.h will redefine LZMA_API resulting in a warning.
Diffstat (limited to '')
-rw-r--r--src/liblzma/common/stream_buffer_encoder.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/liblzma/common/stream_buffer_encoder.c b/src/liblzma/common/stream_buffer_encoder.c
index af49554a..73157590 100644
--- a/src/liblzma/common/stream_buffer_encoder.c
+++ b/src/liblzma/common/stream_buffer_encoder.c
@@ -10,6 +10,7 @@
//
///////////////////////////////////////////////////////////////////////////////
+#include "common.h"
#include "index.h"