]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Portability fix: u_int*_t types are deprecated, replaced with uint*_t
authorFrancesco Chemolli <kinkie@squid-cache.org>
Thu, 28 Oct 2010 15:50:51 +0000 (17:50 +0200)
committerFrancesco Chemolli <kinkie@squid-cache.org>
Thu, 28 Oct 2010 15:50:51 +0000 (17:50 +0200)
src/MemBlob.h

index 51b46d51f6373f14e87ed128eeeda628d11377e3..8a25bd4b776e60bcec276881b3a9e81342326076 100644 (file)
@@ -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
 };