Move to standard integer types #1147

This commit is contained in:
Alex Fabijanic 2017-10-05 18:35:59 -05:00
parent 2e9aecb160
commit c31af5d369

View File

@ -87,7 +87,7 @@ Poco::Exception* OpenSSLException::clone() const
void OpenSSLException::setExtMessage()
{
unsigned long e = ERR_get_error();
Poco::UInt64 e = static_cast<Poco::UInt64>(ERR_get_error());
char buf[128] = { 0 };
char* pErr = ERR_error_string(e, buf);
std::string err;