From: W. Felix Handte Date: Mon, 28 Jan 2019 22:28:14 +0000 (-0500) Subject: Remove CHECK_E Macro X-Git-Tag: v1.4.0^2~44^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2179ce00e15f60ba8c56dd34ffb38023e014663c;p=thirdparty%2Fzstd.git Remove CHECK_E Macro --- diff --git a/lib/common/zstd_internal.h b/lib/common/zstd_internal.h index 4b265bfa9..2870bdea2 100644 --- a/lib/common/zstd_internal.h +++ b/lib/common/zstd_internal.h @@ -54,8 +54,6 @@ extern "C" { #define MIN(a,b) ((a)<(b) ? (a) : (b)) #define MAX(a,b) ((a)>(b) ? (a) : (b)) -#define CHECK_E(f, e) { size_t const errcod = f; if (ERR_isError(errcod)) return ERROR(e); } /* check and send Error code */ - /** * Return the specified error if the condition evaluates to true. *