Define ZSTD_SRCSIZEHINT_MIN as 0

This commit is contained in:
Nick Magerko
2019-08-20 13:06:15 -07:00
parent f23402f1f5
commit c7a24d7a14
4 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -393,7 +393,7 @@ ZSTD_bounds ZSTD_cParam_getBounds(ZSTD_cParameter param)
return bounds;
case ZSTD_c_srcSizeHint:
bounds.lowerBound = 0;
bounds.lowerBound = ZSTD_SRCSIZEHINT_MIN;
bounds.upperBound = ZSTD_SRCSIZEHINT_MAX;
return bounds;