From: Automatic source maintenance Date: Sun, 13 Jun 2010 02:17:17 +0000 (-0600) Subject: SourceFormat Enforcement X-Git-Tag: SQUID_3_1_5~10 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=0175b1c7dffbb707e45e4d7c743caee2eeaedf47;p=thirdparty%2Fsquid.git SourceFormat Enforcement --- diff --git a/src/tools.cc b/src/tools.cc index d9e4dbff0a..70f961c459 100644 --- a/src/tools.cc +++ b/src/tools.cc @@ -904,7 +904,7 @@ setMaxFD(void) } } if (getrlimit(RLIMIT_NOFILE, &rl) < 0) { - debugs(50, DBG_CRITICAL, "setrlimit: RLIMIT_NOFILE: " << xstrerror()); + debugs(50, DBG_CRITICAL, "setrlimit: RLIMIT_NOFILE: " << xstrerror()); } else { Squid_MaxFD = rl.rlim_cur; }