Author: kpvdr
Date: 2009-05-08 16:11:51 -0400 (Fri, 08 May 2009)
New Revision: 3372
Modified:
store/trunk/cpp/lib/PreparedTransaction.h
Log:
Fix for gcc 4.4 (Fedora 11) compiler
Modified: store/trunk/cpp/lib/PreparedTransaction.h
===================================================================
--- store/trunk/cpp/lib/PreparedTransaction.h 2009-05-08 18:58:49 UTC (rev 3371)
+++ store/trunk/cpp/lib/PreparedTransaction.h 2009-05-08 20:11:51 UTC (rev 3372)
@@ -34,8 +34,8 @@
namespace mrg{
namespace msgstore{
-typedef uint64_t queue_id;
-typedef uint64_t message_id;
+typedef u_int64_t queue_id;
+typedef u_int64_t message_id;
class LockedMappings
{