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 -1
View File
@@ -231,7 +231,7 @@ size_t ZSTD_decompressBlock(ZSTD_DCtx* dctx, void* dst, size_t dstCapacity, cons
/*! ZSTD_getErrorCode() :
convert a `size_t` function result into a `ZSTD_error_code` enum type,
which can be used to compare directly with enum list within "error_public.h" */
ZSTD_errorCode ZSTD_getError(size_t code);
ZSTD_ErrorCode ZSTD_getError(size_t code);
#if defined (__cplusplus)