diff options
Diffstat (limited to 'ace/QoS_Session_Impl.cpp')
-rw-r--r-- | ace/QoS_Session_Impl.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ace/QoS_Session_Impl.cpp b/ace/QoS_Session_Impl.cpp index cd4bbbe8c64..849c16b6cc4 100644 --- a/ace/QoS_Session_Impl.cpp +++ b/ace/QoS_Session_Impl.cpp @@ -506,8 +506,8 @@ ACE_GQoS_Session::qos (ACE_SOCK *socket, if (qos_manager->qos_session_set ().find (this) == -1) ACE_ERROR_RETURN ((LM_ERROR, - "This QoS session was not subscribed to" - " by the socket\n"), + ACE_TEXT ("This QoS session was not subscribed to") + ACE_TEXT (" by the socket\n")), -1); // Set the QOS according to the supplied ACE_QoS. The I/O control @@ -521,12 +521,12 @@ ACE_GQoS_Session::qos (ACE_SOCK *socket, qos, &ret_bytes) == -1) ACE_ERROR_RETURN ((LM_ERROR, - "Error in Qos set ACE_OS::ioctl() %d\n", + ACE_TEXT ("Error in Qos set ACE_OS::ioctl() %d\n"), ret_bytes), -1); else ACE_DEBUG ((LM_DEBUG, - "Setting QoS with ACE_OS::ioctl () succeeds \n")); + ACE_TEXT ("Setting QoS with ACE_OS::ioctl () succeeds \n"))); return 0; } |