From c20afad60846ef86be60a6860f4a03a07509edb8 Mon Sep 17 00:00:00 2001 From: Pierre d'Herbemont Date: Fri, 1 Dec 2006 14:02:41 +0100 Subject: [PATCH] dbghelp: Fix elf_load_module params on non elf system to reflect last change to its definition. --- dlls/dbghelp/elf_module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/dbghelp/elf_module.c b/dlls/dbghelp/elf_module.c index c389412897b..85494caea64 100644 --- a/dlls/dbghelp/elf_module.c +++ b/dlls/dbghelp/elf_module.c @@ -1504,7 +1504,7 @@ BOOL elf_enum_modules(HANDLE hProc, elf_enum_modules_cb cb, void* user) return FALSE; } -struct module* elf_load_module(struct process* pcs, const char* name, DWORD addr) +struct module* elf_load_module(struct process* pcs, const char* name, unsigned long addr) { return NULL; }