From: wessels <> Date: Fri, 13 Mar 1998 12:43:52 +0000 (+0000) Subject: formatting X-Git-Tag: SQUID_3_0_PRE1~3850 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4cc73db30f9b4e36eb4a568b7766116eddbace76;p=thirdparty%2Fsquid.git formatting --- diff --git a/src/mem.cc b/src/mem.cc index 8de76521f1..767c2eb91b 100644 --- a/src/mem.cc +++ b/src/mem.cc @@ -1,6 +1,6 @@ /* - * $Id: mem.cc,v 1.16 1998/03/08 21:02:10 rousskov Exp $ + * $Id: mem.cc,v 1.17 1998/03/13 05:43:52 wessels Exp $ * * DEBUG: section 13 High Level Memory Pool Management * AUTHOR: Harvest Derived @@ -52,7 +52,10 @@ static MemMeter StrVolumeMeter; /* local routines */ -/* we have a limit on _total_ amount of idle memory so we ignore max_pages for now */ +/* + * we have a limit on _total_ amount of idle memory so we ignore + * max_pages for now + */ static void memDataInit(mem_type type, const char *name, size_t size, int max_pages_notused) { @@ -212,7 +215,7 @@ memInit(void) memDataInit(MEM_HASH_TABLE, "hash_table", sizeof(hash_table), 0); memDataInit(MEM_HIERARCHYLOGENTRY, "HierarchyLogEntry", sizeof(HierarchyLogEntry), 0); - memDataInit(MEM_HTTPSTATEDATA, "HttpStateData", sizeof(HttpStateData), 0); + memDataInit(MEM_HTTP_STATE_DATA, "HttpStateData", sizeof(HttpStateData), 0); memDataInit(MEM_HTTPREPLY, "http_reply", sizeof(http_reply), 0); memDataInit(MEM_HTTP_HDR_CC, "HttpHdrCc", sizeof(HttpHdrCc), 0); memDataInit(MEM_HTTP_HDR_RANGE_SPEC, "HttpHdrRangeSpec", sizeof(HttpHdrRangeSpec), 0);