From: Automatic source maintenance Date: Fri, 14 Oct 2011 01:49:17 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: BumpSslServerFirst.take01~100 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b8ad91f5424265a3dcd87d9ea4279fbca32af8e1;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/format/Format.cc b/src/format/Format.cc index 62063bb9bf..6fb53f6463 100644 --- a/src/format/Format.cc +++ b/src/format/Format.cc @@ -1056,7 +1056,7 @@ Format::Format::assemble(MemBuf &mb, AccessLogEntry *al, int logSequenceNumber) const bool haveMaxWidth = fmt->widthMax >=0 && !doint && !dooff; if (haveMaxWidth || fmt->widthMin) { const int minWidth = fmt->widthMin >= 0 ? - fmt->widthMin : 0; + fmt->widthMin :0; const int maxWidth = haveMaxWidth ? fmt->widthMax : strlen(out);