Use Unused Variable in ERR_getErrorString()

This commit is contained in:
W. Felix Handte 2018-12-19 12:36:10 -08:00
parent 0d606ee3db
commit 8e61ac8161

View File

@ -15,6 +15,7 @@
const char* ERR_getErrorString(ERR_enum code)
{
#ifdef ZSTD_STRIP_ERROR_STRINGS
(void)code;
return "Error strings stripped";
#else
static const char* const notErrorCode = "Unspecified error code";