From: Automatic source maintenance Date: Thu, 8 Dec 2011 01:22:28 +0000 (-0700) Subject: SourceFormat Enforcement X-Git-Tag: BumpSslServerFirst.take05~12^2~128 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ce88d0eb6bc9b64c663287179603a52b4da6bd7d;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/filemap.cc b/src/filemap.cc index ead311b6ff..23d11e38eb 100644 --- a/src/filemap.cc +++ b/src/filemap.cc @@ -55,8 +55,8 @@ #define FM_INITIAL_NUMBER (1<<14) FileMap::FileMap() : - capacity_(FM_INITIAL_NUMBER), usedSlots_(0), - nwords(capacity_ >> LONG_BIT_SHIFT) + capacity_(FM_INITIAL_NUMBER), usedSlots_(0), + nwords(capacity_ >> LONG_BIT_SHIFT) { debugs(8, 3, HERE << "creating space for " << capacity_ << " files"); debugs(8, 5, "--> " << nwords << " words of " << sizeof(*bitmap) << " bytes each");