diff options
Diffstat (limited to 'module/zstd/lib/common')
-rw-r--r-- | module/zstd/lib/common/zstd_common.c | 2 | ||||
-rw-r--r-- | module/zstd/lib/common/zstd_internal.h | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/module/zstd/lib/common/zstd_common.c b/module/zstd/lib/common/zstd_common.c index 91fe3323a..935670b1d 100644 --- a/module/zstd/lib/common/zstd_common.c +++ b/module/zstd/lib/common/zstd_common.c @@ -30,7 +30,7 @@ const char* ZSTD_versionString(void) { return ZSTD_VERSION_STRING; } /*-**************************************** * ZSTD Error Management ******************************************/ -#undef ZSTD_isError /* defined within zstd_internal.h */ + /*! ZSTD_isError() : * tells if a return value is an error code * symbol is required for external callers */ diff --git a/module/zstd/lib/common/zstd_internal.h b/module/zstd/lib/common/zstd_internal.h index 3bc7e55a0..20899575b 100644 --- a/module/zstd/lib/common/zstd_internal.h +++ b/module/zstd/lib/common/zstd_internal.h @@ -43,7 +43,6 @@ extern "C" { /* ---- static assert (debug) --- */ #define ZSTD_STATIC_ASSERT(c) DEBUG_STATIC_ASSERT(c) -#define ZSTD_isError ERR_isError /* for inlining */ #define FSE_isError ERR_isError #define HUF_isError ERR_isError |