summaryrefslogtreecommitdiff
path: root/Source/Core/Common/ucrtFreadWorkaround.cpp
diff options
context:
space:
mode:
authormathieui <mathieui@mathieui.net>2016-01-21 21:16:51 +0100
committermathieui <mathieui@mathieui.net>2016-01-21 21:16:51 +0100
commit3e283ea9f17aa779832db065b2ecc4b19cf03e83 (patch)
treea7e5db6d6550487db024bc9b7b5dd9fa96198aa4 /Source/Core/Common/ucrtFreadWorkaround.cpp
parent78aa398e7c09adc4fb9318a4c497e8fd1bcd58ba (diff)
More asterisks
Diffstat (limited to 'Source/Core/Common/ucrtFreadWorkaround.cpp')
-rw-r--r--Source/Core/Common/ucrtFreadWorkaround.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Common/ucrtFreadWorkaround.cpp b/Source/Core/Common/ucrtFreadWorkaround.cpp
index cecab2b4ff..ea4baa2970 100644
--- a/Source/Core/Common/ucrtFreadWorkaround.cpp
+++ b/Source/Core/Common/ucrtFreadWorkaround.cpp
@@ -8,7 +8,7 @@
#include <Windows.h>
struct PatchInfo {
- const wchar_t *module_name;
+ const wchar_t* module_name;
u32 checksum;
u32 rva;
u32 length;
@@ -35,7 +35,7 @@ bool ApplyPatch(const PatchInfo &patch) {
return false;
}
- void *patch_addr = (void *)((uintptr_t)module + patch.rva);
+ void* patch_addr = (void *)((uintptr_t)module + patch.rva);
size_t patch_size = patch.length;
DWORD old_protect;