summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorelliott_c <ocielliottc@users.noreply.github.com>2004-12-16 15:36:22 +0000
committerelliott_c <ocielliottc@users.noreply.github.com>2004-12-16 15:36:22 +0000
commit9bb52b54066ed318e561e888a60b862fe43917a0 (patch)
tree30af78ddd9844da6a6e891fa65bc3615cf018e57
parente9695f427d5b081d617bb07e1ba5d717c6993ba4 (diff)
downloadATCD-9bb52b54066ed318e561e888a60b862fe43917a0.tar.gz
ChangeLogTag: Thu Dec 16 09:34:02 2004 Chad Elliott <elliott_c@ociweb.com>
-rw-r--r--ace/OS_NS_sys_socket.inl4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/OS_NS_sys_socket.inl b/ace/OS_NS_sys_socket.inl
index 829d36eaf4c..0062c83a4fe 100644
--- a/ace/OS_NS_sys_socket.inl
+++ b/ace/OS_NS_sys_socket.inl
@@ -618,8 +618,8 @@ ACE_OS::sendmsg (ACE_HANDLE handle,
return (ssize_t) bytes_sent;
# elif defined (ACE_HAS_NONCONST_SENDMSG)
ACE_SOCKCALL_RETURN (::sendmsg (handle,
- const_cast<struct msghdr *>(msg),
- flags), int, -1);
+ const_cast<struct msghdr *>(msg),
+ flags), int, -1);
# else
ACE_SOCKCALL_RETURN (::sendmsg (handle, msg, flags), int, -1);
# endif