Remove Error Strings with ZSTD_STRIP_ERROR_STRINGS

dev
W. Felix Handte 2018-11-16 16:44:41 -08:00
parent 9d5f3963ff
commit 605dd576ee
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,9 @@
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";
switch( code )
{
@ -46,4 +49,5 @@ const char* ERR_getErrorString(ERR_enum code)
case PREFIX(maxCode):
default: return notErrorCode;
}
#endif
}