diff options
author | Andrew Stitcher <astitcher@apache.org> | 2008-07-29 20:26:46 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2008-07-29 20:26:46 +0000 |
commit | 5c49bab054b72ee8ce73b376786f48bbaacc1a8b (patch) | |
tree | 1b30782fa08eb395f4c284a68721922e8ab3787f /cpp/src/qpid/broker/MessageStoreModule.cpp | |
parent | 14744b26e039cf25368872a244e575ee04d0d30f (diff) | |
download | qpid-python-5c49bab054b72ee8ce73b376786f48bbaacc1a8b.tar.gz |
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
Diffstat (limited to 'cpp/src/qpid/broker/MessageStoreModule.cpp')
-rw-r--r-- | cpp/src/qpid/broker/MessageStoreModule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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)); } |