Merge pull request #6380 from ThomasWaldmann/fix-zstd-include-1.2

fix zstd.h include for bundled zstd, fixes #6369
This commit is contained in:
TW 2022-02-27 14:39:09 +01:00 committed by GitHub
commit 97de7e1fe2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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