dbghelp: Correct type of exported function addresses in PE module.

Signed-off-by: Eric Pouech <eric.pouech@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Eric Pouech 2021-10-28 16:46:10 +02:00 committed by Alexandre Julliard
parent 99d36ccfb9
commit fd5c709c6b
1 changed files with 1 additions and 1 deletions

View File

@ -688,7 +688,7 @@ static BOOL pe_load_export_debug_info(const struct process* pcs, struct module*
IMAGE_DIRECTORY_ENTRY_EXPORT, &size)))
{
const WORD* ordinals = NULL;
const DWORD_PTR* functions = NULL;
const DWORD* functions = NULL;
const DWORD* names = NULL;
unsigned int j;
char buffer[16];