From: Automatic source maintenance Date: Thu, 17 Mar 2011 00:12:57 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: take06~27^2~81 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=605b80caadc0024e6944058aa73620139770157b;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/ssl/ErrorDetail.cc b/src/ssl/ErrorDetail.cc index 6bc194bf78..63a8e15a79 100644 --- a/src/ssl/ErrorDetail.cc +++ b/src/ssl/ErrorDetail.cc @@ -182,7 +182,7 @@ const char *Ssl::ErrorDetail::err_code() const static char tmpBuffer[64]; const char *err = getErrorName(error_no); if (!err) { - snprintf(tmpBuffer, 64, "%d", (int)error_no); + snprintf(tmpBuffer, 64, "%d", (int)error_no); err = tmpBuffer; } return err;