changed enum type name to ZSTD_ErrorCode

This commit is contained in:
Yann Collet
2016-02-05 02:33:10 +01:00
parent 953ce72f4a
commit 982ffc773d
6 changed files with 9 additions and 10 deletions
+1 -2
View File
@@ -140,7 +140,7 @@ size_t ZSTD_freeCCtx(ZSTD_CCtx* cctx)
{
free(cctx->workSpace);
free(cctx);
return 0;
return 0; /* reserved as a potential error code in the future */
}
@@ -885,7 +885,6 @@ static size_t ZSTD_count_2segments(const BYTE* ip, const BYTE* match, const BYTE
}
/*-*************************************
* Hashes
***************************************/