浏览代码

fix zstd.h include for bundled zstd, fixes #6369

Thomas Waldmann 3 年之前
父节点
当前提交
9390d2712b
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/borg/algorithms/zstd-libselect.h

+ 1 - 1
src/borg/algorithms/zstd-libselect.h

@@ -1,5 +1,5 @@
 #ifdef BORG_USE_BUNDLED_ZSTD
-#include <zstd.h>
+#include "zstd/lib/zstd.h"
 #else
 #include <zstd.h>
 #endif