summaryrefslogtreecommitdiff
path: root/ACE/ace/SOCK_IO.cpp
diff options
context:
space:
mode:
authorAbdullah Sowayan <sowayan@users.noreply.github.com>2007-08-13 20:30:44 +0000
committerAbdullah Sowayan <sowayan@users.noreply.github.com>2007-08-13 20:30:44 +0000
commit672ab112d516c1596fe81caee6aa84e568dfc63a (patch)
tree5fd5f3625a122d12a7655b339556af152eb6fa72 /ACE/ace/SOCK_IO.cpp
parent1b54dadf27412a4be9ecfbe7afa66ea29b9c397d (diff)
downloadATCD-672ab112d516c1596fe81caee6aa84e568dfc63a.tar.gz
Mon Aug 13 20:27:43 UTC 2007 Abdullah Sowayan <abdullah.sowayan@lmco.com>
Diffstat (limited to 'ACE/ace/SOCK_IO.cpp')
-rw-r--r--ACE/ace/SOCK_IO.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/SOCK_IO.cpp b/ACE/ace/SOCK_IO.cpp
index 10dfe308df5..31d5db47dc6 100644
--- a/ACE/ace/SOCK_IO.cpp
+++ b/ACE/ace/SOCK_IO.cpp
@@ -85,9 +85,9 @@ ACE_SOCK_IO::recvv (iovec *io_vec,
// don't want that value cast to unsigned and returned.
ssize_t recv_len = this->recv (io_vec->iov_base, inlen);
if (recv_len > 0)
- // u_long is the Windows type; size_t is everyone else's. A u_long
- // should go into a size_t anywhere without an issue.
- io_vec->iov_len = static_cast<u_long> (recv_len);
+ // u_long is the Windows type; size_t is everyone else's. A u_long
+ // should go into a size_t anywhere without an issue.
+ io_vec->iov_len = static_cast<u_long> (recv_len);
return recv_len;
}
else