summaryrefslogtreecommitdiff
path: root/ace/Memory_Pool.cpp
diff options
context:
space:
mode:
authorschmidt <douglascraigschmidt@users.noreply.github.com>1996-12-11 00:25:35 +0000
committerschmidt <douglascraigschmidt@users.noreply.github.com>1996-12-11 00:25:35 +0000
commit7713d27a5142c981b7261534693a6cc2951c7896 (patch)
treed252969bc911b62d8f9a8260738ce06cbdee5f61 /ace/Memory_Pool.cpp
parent3bcb8826f01687dfa4a336e095bcaf7f5012bd7b (diff)
downloadATCD-7713d27a5142c981b7261534693a6cc2951c7896.tar.gz
foo
Diffstat (limited to 'ace/Memory_Pool.cpp')
-rw-r--r--ace/Memory_Pool.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/ace/Memory_Pool.cpp b/ace/Memory_Pool.cpp
index 45508fc8d21..b6de3c10c00 100644
--- a/ace/Memory_Pool.cpp
+++ b/ace/Memory_Pool.cpp
@@ -114,7 +114,7 @@ ACE_MMAP_Memory_Pool::ACE_MMAP_Memory_Pool (LPCTSTR backing_store_name,
{
if (options->use_fixed_addr_)
{
- this->base_addr_ = (void *) options->base_addr_;
+ this->base_addr_ = options->base_addr_;
ACE_SET_BITS (flags_, MAP_FIXED);
}
this->write_each_page_ = options->write_each_page_;
@@ -275,7 +275,7 @@ ACE_MMAP_Memory_Pool::remap (void *addr)
return this->map_file (current_file_offset);
}
-ACE_MMAP_Memory_Pool_Options::ACE_MMAP_Memory_Pool_Options (char *base_addr,
+ACE_MMAP_Memory_Pool_Options::ACE_MMAP_Memory_Pool_Options (void *base_addr,
int use_fixed_addr,
int write_each_page)
: base_addr_ (base_addr),