Further replication removed

`CHECK_F` is now in `error_private.h`. Minor tidy.
This commit is contained in:
Carl Woffenden
2020-04-07 11:25:16 +02:00
parent 7af7735fa3
commit a93fadfcd9
3 changed files with 0 additions and 8 deletions
-1
View File
@@ -1499,7 +1499,6 @@ size_t ZSTD_estimateDStreamSize_fromFrame(const void* src, size_t srcSize)
/* ***** Decompression ***** */
static int ZSTD_DCtx_isOverflow(ZSTD_DStream* zds, size_t const neededInBuffSize, size_t const neededOutBuffSize)
{
return (zds->inBuffSize + zds->outBuffSize) >= (neededInBuffSize + neededOutBuffSize) * ZSTD_WORKSPACETOOLARGE_FACTOR;