summaryrefslogtreecommitdiff
path: root/protocols/ace/RMCast/Protocol.h
diff options
context:
space:
mode:
Diffstat (limited to 'protocols/ace/RMCast/Protocol.h')
-rw-r--r--protocols/ace/RMCast/Protocol.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/protocols/ace/RMCast/Protocol.h b/protocols/ace/RMCast/Protocol.h
index c0e2797b732..314f69676cb 100644
--- a/protocols/ace/RMCast/Protocol.h
+++ b/protocols/ace/RMCast/Protocol.h
@@ -17,7 +17,6 @@
#include "ace/Null_Mutex.h"
#include "ace/OS_NS_string.h"
-#include "ace/OS_NS_stdlib.h"
#include "Bits.h"
@@ -240,7 +239,7 @@ namespace ACE_RMCast
class Message;
typedef
- ACE_Refcounted_Auto_Ptr<Message, Mutex>
+ ACE_Refcounted_Auto_Ptr<Message, ACE_Null_Mutex>
Message_ptr;
class Message
@@ -309,7 +308,7 @@ namespace ACE_RMCast
Profile const*
find (u16 id) const
{
- Profiles::ENTRY* e = 0;
+ Profiles::ENTRY* e;
if (profiles_.find (id, e) == -1) return 0;
@@ -634,7 +633,7 @@ namespace ACE_RMCast
size (size_t s)
{
if (s > capacity_)
- ACE_OS::abort ();
+ abort ();
size_ = s;