summaryrefslogtreecommitdiff
path: root/ace/MMAP_Memory_Pool.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ace/MMAP_Memory_Pool.cpp')
-rw-r--r--ace/MMAP_Memory_Pool.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ace/MMAP_Memory_Pool.cpp b/ace/MMAP_Memory_Pool.cpp
index fa3bf825e60..8320361fe27 100644
--- a/ace/MMAP_Memory_Pool.cpp
+++ b/ace/MMAP_Memory_Pool.cpp
@@ -328,8 +328,8 @@ ACE_MMAP_Memory_Pool::init_acquire (size_t nbytes,
first_time = 0;
- if (nbytes < (size_t) this->minimum_bytes_)
- nbytes = this->minimum_bytes_;
+ if (nbytes < static_cast <size_t> (this->minimum_bytes_))
+ nbytes = static_cast <size_t> (this->minimum_bytes_);
if (this->mmap_.open (this->backing_store_name_,
O_RDWR | O_CREAT | O_TRUNC | O_EXCL,
@@ -376,7 +376,7 @@ ACE_MMAP_Memory_Pool::init_acquire (size_t nbytes,
int
ACE_MMAP_Memory_Pool::seh_selector (void *ep)
{
- DWORD ecode = ((EXCEPTION_POINTERS *) ep)->ExceptionRecord->ExceptionCode;
+ DWORD const ecode = ((EXCEPTION_POINTERS *) ep)->ExceptionRecord->ExceptionCode;
if (ecode == EXCEPTION_ACCESS_VIOLATION)
{