diff options
Diffstat (limited to 'lib/System/AIX/Memory.cpp')
-rw-r--r-- | lib/System/AIX/Memory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/System/AIX/Memory.cpp b/lib/System/AIX/Memory.cpp index b4e9a9f..6ba57de 100644 --- a/lib/System/AIX/Memory.cpp +++ b/lib/System/AIX/Memory.cpp @@ -45,7 +45,7 @@ void* Memory::AllocateRWX(Memory& M, unsigned NumBytes) { void Memory::ReleaseRWX(Memory& M) { if (M.Address == 0 || M.AllocSize == 0) return; if (0 != munmap(M.Address, M.AllocSize)) { - throw std::string("Can't release RWX Memory: ") + sterror(errno); + throw std::string("Can't release RWX Memory: ") + strerror(errno); } } |