We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5a1f426 commit b92085eCopy full SHA for b92085e
1 file changed
test/unit/test_lzma.c
@@ -5,8 +5,7 @@
5
6
/* Include LZMA implementation */
7
#define OTEZIP_ENABLE_LZMA
8
-#include "../../src/include/zstream.h"
9
-#include "../../src/lib/lzma.inc.c" /* This will include both encoder and decoder */
+#include "../../src/lib/lzma.inc.c"
10
11
/* Simple test to compress and decompress data using LZMA */
12
int test_lzma_compress_decompress() {
@@ -187,6 +186,9 @@ int test_lzma_large_data() {
187
186
}
188
189
int main(int argc, char *argv[]) {
+ (void)argc;
190
+ (void)argv;
191
+
192
printf ("Running LZMA basic test...\n");
193
int result1 = test_lzma_compress_decompress ();
194
0 commit comments