]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
Remove CHECK_F Macro
authorW. Felix Handte <w@felixhandte.com>
Mon, 28 Jan 2019 22:16:32 +0000 (17:16 -0500)
committerW. Felix Handte <w@felixhandte.com>
Mon, 28 Jan 2019 22:16:32 +0000 (17:16 -0500)
lib/common/zstd_internal.h

index abf35d21af610540f8017517d41ea8e57f972a45..4b265bfa922d1524bf51344067404849ff0d8aea 100644 (file)
@@ -53,7 +53,7 @@ extern "C" {
 #undef MAX
 #define MIN(a,b) ((a)<(b) ? (a) : (b))
 #define MAX(a,b) ((a)>(b) ? (a) : (b))
-#define CHECK_F(f) { size_t const errcod = f; if (ERR_isError(errcod)) return errcod; }  /* check and Forward error code */
+
 #define CHECK_E(f, e) { size_t const errcod = f; if (ERR_isError(errcod)) return ERROR(e); }  /* check and send Error code */
 
 /**