]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Fix zstdmt_compress.h include
authorNick Terrell <terrelln@fb.com>
Thu, 26 Jan 2017 23:25:32 +0000 (15:25 -0800)
committerNick Terrell <terrelln@fb.com>
Thu, 26 Jan 2017 23:25:32 +0000 (15:25 -0800)
programs/bench.c

index 1ca40d6b9e9aa22fa702a6d348c0b5ef75295ad8..dcb23b1f2becd859fb6e555667dd108f08e5a1a5 100644 (file)
@@ -40,6 +40,7 @@
 #include "zstd.h"
 #include "datagen.h"     /* RDG_genBuffer */
 #include "xxhash.h"
+#include "zstdmt_compress.h"
 
 
 /* *************************************
@@ -148,8 +149,6 @@ typedef struct {
 #define MIN(a,b) ((a)<(b) ? (a) : (b))
 #define MAX(a,b) ((a)>(b) ? (a) : (b))
 
-#include "compress/zstdmt_compress.h"
-
 static int BMK_benchMem(const void* srcBuffer, size_t srcSize,
                         const char* displayName, int cLevel,
                         const size_t* fileSizes, U32 nbFiles,