Replace CHECK_F Uses in zstdmt_compress.c and zstd_ddict.c

This commit is contained in:
W. Felix Handte
2019-01-28 17:15:57 -05:00
parent cafc3b1bcb
commit 64bb6640f2
2 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -133,7 +133,7 @@ static size_t ZSTD_initDDict_internal(ZSTD_DDict* ddict,
ddict->entropy.hufTable[0] = (HUF_DTable)((HufLog)*0x1000001); /* cover both little and big endian */
/* parse dictionary content */
CHECK_F( ZSTD_loadEntropy_intoDDict(ddict, dictContentType) );
FORWARD_ERROR( ZSTD_loadEntropy_intoDDict(ddict, dictContentType) );
return 0;
}