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.h | |
| 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.h')
| -rw-r--r-- | cpp/src/qpid/broker/MessageStoreModule.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/MessageStoreModule.h b/cpp/src/qpid/broker/MessageStoreModule.h index d9f9f2e344..a16ef4de21 100644 --- a/cpp/src/qpid/broker/MessageStoreModule.h +++ b/cpp/src/qpid/broker/MessageStoreModule.h @@ -71,7 +71,7 @@ class MessageStoreModule : public MessageStore void dequeue(TransactionContext* ctxt, const boost::intrusive_ptr<PersistableMessage>& msg, const PersistableQueue& queue); - u_int32_t outstandingQueueAIO(const PersistableQueue& queue); + uint32_t outstandingQueueAIO(const PersistableQueue& queue); void flush(const qpid::broker::PersistableQueue& queue); ~MessageStoreModule(); |
