Remove Error Strings with ZSTD_STRIP_ERROR_STRINGS
This commit is contained in:
parent
9d5f3963ff
commit
605dd576ee
@ -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
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user