1
0
mirror of https://github.com/facebook/zstd.git synced 2026-01-06 11:21:19 +03:00

Fix fall-through case

This commit is contained in:
Nick Magerko
2019-08-19 12:32:43 -07:00
parent dffbac5f89
commit edf2abf106

View File

@@ -794,6 +794,7 @@ size_t ZSTD_CCtxParams_getParameter(
break;
case ZSTD_c_srcSizeHint :
*value = (int)CCtxParams->srcSizeHint;
break;
default: RETURN_ERROR(parameter_unsupported, "unknown parameter");
}
return 0;