From: Francesco Chemolli Date: Thu, 28 Oct 2010 15:50:51 +0000 (+0200) Subject: Portability fix: u_int*_t types are deprecated, replaced with uint*_t X-Git-Tag: take1~130 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=b6aa37ec84fcaaf52ea72bdb7dc79829e27f10cc;p=thirdparty%2Fsquid.git Portability fix: u_int*_t types are deprecated, replaced with uint*_t --- diff --git a/src/MemBlob.h b/src/MemBlob.h index 51b46d51f6..8a25bd4b77 100644 --- a/src/MemBlob.h +++ b/src/MemBlob.h @@ -47,10 +47,10 @@ public: std::ostream& dump(std::ostream& os) const; public: - u_int64_t alloc; ///< number of MemBlob instances created so far - u_int64_t live; ///< number of MemBlob instances currently alive - u_int64_t append; ///< number of MemBlob::append() calls - u_int64_t liveBytes; ///< the total size of currently allocated storage + uint64_t alloc; ///< number of MemBlob instances created so far + uint64_t live; ///< number of MemBlob instances currently alive + uint64_t append; ///< number of MemBlob::append() calls + uint64_t liveBytes; ///< the total size of currently allocated storage };