A few more asterisks, mostly casts

This commit is contained in:
mathieui
2016-01-21 22:18:18 +01:00
parent f15ffda5a7
commit 4b06e92731
6 changed files with 19 additions and 19 deletions

View File

@ -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;