summaryrefslogtreecommitdiff
path: root/ACEXML/common/Mem_Map_Stream.cpp
diff options
context:
space:
mode:
authorelliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-29 16:24:28 +0000
committerelliott_c <elliott_c@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2003-04-29 16:24:28 +0000
commitd8834bbeba2252f455efb69c1a303b12421d8431 (patch)
treeab418f0d245574f20b770a820c590216fd5d7c3d /ACEXML/common/Mem_Map_Stream.cpp
parentb867c0f9e91abe6a77f1cf38fcddab7b079df7ea (diff)
downloadATCD-d8834bbeba2252f455efb69c1a303b12421d8431.tar.gz
ChangeLogTag: Tue Apr 29 11:21:40 2003 Chad Elliott <elliott_c@ociweb.com>
Diffstat (limited to 'ACEXML/common/Mem_Map_Stream.cpp')
-rw-r--r--ACEXML/common/Mem_Map_Stream.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ACEXML/common/Mem_Map_Stream.cpp b/ACEXML/common/Mem_Map_Stream.cpp
index 818bd11b230..2513005e3bb 100644
--- a/ACEXML/common/Mem_Map_Stream.cpp
+++ b/ACEXML/common/Mem_Map_Stream.cpp
@@ -71,7 +71,7 @@ ACEXML_Mem_Map_Stream::recv (size_t &len)
return 0;
const char *s = this->recv_pos_;
- this->seek (len, SEEK_CUR);
+ this->seek (ACE_static_cast (off_t, len), SEEK_CUR);
len = this->get_pos_ - s;
return s;
}