From 5c49bab054b72ee8ce73b376786f48bbaacc1a8b Mon Sep 17 00:00:00 2001 From: Andrew Stitcher Date: Tue, 29 Jul 2008 20:26:46 +0000 Subject: QPID-1198 (Partial): replace all uses of u_intX_t with uintX_t Patches from Manuel Teira. The u_int* versions are not available in the Sun header files. In any case using only uint* is more consistent git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@680828 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qpid/broker/MessageStoreModule.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cpp/src/qpid/broker/MessageStoreModule.cpp') diff --git a/cpp/src/qpid/broker/MessageStoreModule.cpp b/cpp/src/qpid/broker/MessageStoreModule.cpp index 21c7f6bc02..c9528b9d98 100644 --- a/cpp/src/qpid/broker/MessageStoreModule.cpp +++ b/cpp/src/qpid/broker/MessageStoreModule.cpp @@ -128,7 +128,7 @@ void MessageStoreModule::flush(const qpid::broker::PersistableQueue& queue) TRANSFER_EXCEPTION(store->flush(queue)); } -u_int32_t MessageStoreModule::outstandingQueueAIO(const PersistableQueue& queue) +uint32_t MessageStoreModule::outstandingQueueAIO(const PersistableQueue& queue) { TRANSFER_EXCEPTION(return store->outstandingQueueAIO(queue)); } -- cgit v1.2.1