]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Fix pool.c threading.h import
authorNick Terrell <terrelln@fb.com>
Thu, 26 Jan 2017 23:29:10 +0000 (15:29 -0800)
committerNick Terrell <terrelln@fb.com>
Thu, 26 Jan 2017 23:29:10 +0000 (15:29 -0800)
lib/common/pool.c

index 693217f243ea393d9eed64931ab3ed36512ff2d4..e439fe1b0dd6bc4344ec889121241a92f2d72b1f 100644 (file)
@@ -21,7 +21,7 @@
 
 #ifdef ZSTD_MULTITHREAD
 
-#include <threading.h>   /* pthread adaptation */
+#include "threading.h"   /* pthread adaptation */
 
 /* A job is a function and an opaque argument */
 typedef struct POOL_job_s {