summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-06-09 13:58:08 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-06-09 13:58:08 +0000
commit7d24bf993e401f474685856dddb8e0c78a14441c (patch)
tree61e62c20d2c87685a29fc52a99b28d78148087a0
parent6ab03c7abb351504ffd505bd2f7baad19575255f (diff)
downloadATCD-7d24bf993e401f474685856dddb8e0c78a14441c.tar.gz
ChangeLogTag: Fri Jun 9 13:42:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--ace/FILE_IO.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ace/FILE_IO.cpp b/ace/FILE_IO.cpp
index 6c05303ec61..fa22628fa10 100644
--- a/ace/FILE_IO.cpp
+++ b/ace/FILE_IO.cpp
@@ -124,7 +124,7 @@ ACE_FILE_IO::recvv (iovec *io_vec)
ACE_TRACE ("ACE_FILE_IO::recvv");
io_vec->iov_base = 0;
- ACE_LOFF_T length = ACE_OS::filesize (this->get_handle ());
+ size_t length = static_cast <size_t> (ACE_OS::filesize (this->get_handle ()));
if (length > 0)
{