added ZSTD_error_frameParameter_windowTooLarge (#403)

This commit is contained in:
Yann Collet
2016-10-12 17:29:24 -07:00
parent e405c7a126
commit 5d919e7ac3
3 changed files with 4 additions and 2 deletions
+1
View File
@@ -23,6 +23,7 @@ const char* ERR_getErrorString(ERR_enum code)
case PREFIX(parameter_unknown): return "Unknown parameter type";
case PREFIX(frameParameter_unsupported): return "Unsupported frame parameter";
case PREFIX(frameParameter_unsupportedBy32bits): return "Frame parameter unsupported in 32-bits mode";
case PREFIX(frameParameter_windowTooLarge): return "Frame requires too much memory for decoding";
case PREFIX(compressionParameter_unsupported): return "Compression parameter is out of bound";
case PREFIX(init_missing): return "Context should be init first";
case PREFIX(memory_allocation): return "Allocation error : not enough memory";