Remove Error Strings with ZSTD_STRIP_ERROR_STRINGS

This commit is contained in:
W. Felix Handte
2018-12-18 13:36:39 -08:00
parent 9d5f3963ff
commit 605dd576ee
+4
View File
@@ -14,6 +14,9 @@
const char* ERR_getErrorString(ERR_enum code) const char* ERR_getErrorString(ERR_enum code)
{ {
#ifdef ZSTD_STRIP_ERROR_STRINGS
return "Error strings stripped";
#else
static const char* const notErrorCode = "Unspecified error code"; static const char* const notErrorCode = "Unspecified error code";
switch( code ) switch( code )
{ {
@@ -46,4 +49,5 @@ const char* ERR_getErrorString(ERR_enum code)
case PREFIX(maxCode): case PREFIX(maxCode):
default: return notErrorCode; default: return notErrorCode;
} }
#endif
} }