changed enum type name to ZSTD_ResetDirective

for naming consistency :
types should start with a capital letter (after prefix)
This commit is contained in:
Yann Collet
2018-11-20 12:00:20 -08:00
parent 3b838abf97
commit 114bd4346e
4 changed files with 8 additions and 8 deletions
+1 -1
View File
@@ -672,7 +672,7 @@ size_t ZSTD_CCtx_refPrefix_advanced(
/*! ZSTD_CCtx_reset() :
* Also dumps dictionary */
size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_reset_directive reset)
size_t ZSTD_CCtx_reset(ZSTD_CCtx* cctx, ZSTD_ResetDirective reset)
{
if ( (reset == ZSTD_reset_session_only)
|| (reset == ZSTD_reset_session_and_parameters) ) {