Remove Error Strings with ZSTD_STRIP_ERROR_STRINGS
This commit is contained in:
@@ -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
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user