Explorar el Código

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

Thomas Waldmann hace 3 años
padre
commit
9390d2712b
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  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