summaryrefslogtreecommitdiff
path: root/Source/Core/Common/MemoryUtil.cpp
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-01-21 20:46:25 +0100
committermathieui <mathieui@mathieui.net>2016-01-21 20:46:25 +0100
commit78aa398e7c09adc4fb9318a4c497e8fd1bcd58ba (patch)
tree46860018019feb7aa24b19b18e7a743fd1bb8c7a /Source/Core/Common/MemoryUtil.cpp
parent7c3e4b34f3407b95ac1746fe6f4567c744478c60 (diff)
Common: asterisks go against the type name
not the variable name
Diffstat (limited to 'Source/Core/Common/MemoryUtil.cpp')
-rw-r--r--Source/Core/Common/MemoryUtil.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/Common/MemoryUtil.cpp b/Source/Core/Common/MemoryUtil.cpp
index ea9ca7d625..946fcfaf4f 100644
--- a/Source/Core/Common/MemoryUtil.cpp
+++ b/Source/Core/Common/MemoryUtil.cpp
@@ -45,7 +45,7 @@ void* AllocateExecutableMemory(size_t size, bool low)
#if defined(_WIN32)
void* ptr = VirtualAlloc(0, size, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
#else
- static char *map_hint = nullptr;
+ static char* map_hint = nullptr;
#if defined(_M_X86_64) && !defined(MAP_32BIT)
// This OS has no flag to enforce allocation below the 4 GB boundary,
// but if we hint that we want a low address it is very likely we will