From: Alex Rousskov Date: Fri, 8 Apr 2011 00:07:18 +0000 (-0600) Subject: Fixed raw page buffer type. X-Git-Tag: take06~49 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b4440c0d24611cdb8fc33bda0478b8db1068a7ae;p=thirdparty%2Fsquid.git Fixed raw page buffer type. --- diff --git a/src/ipc/mem/PagePool.h b/src/ipc/mem/PagePool.h index fdccf89357..7d45d3623f 100644 --- a/src/ipc/mem/PagePool.h +++ b/src/ipc/mem/PagePool.h @@ -45,7 +45,7 @@ private: const unsigned int theCapacity; ///< number of pages in the pool const unsigned int thePageSize; ///< page size - char *theBuf[]; ///< pages storage + char theBuf[]; ///< pages storage }; PageStack pageIndex; ///< free pages index