Fix warning in AppleTLS

pull/160/merge
Nils Maier 2013-12-09 08:01:08 +01:00
parent dc757f49b6
commit 6a8fb5744c
1 changed files with 1 additions and 1 deletions

View File

@ -649,7 +649,7 @@ std::string AppleTLSSession::getLastErrorString()
case errSSLConnectionRefused:
return "Connection refused";
default:
return fmt("Unspecified error %d", lastError_);
return fmt("Unspecified error %ld", (long)lastError_);
}
}