Commit c4a5c735 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

Fix elf_read_wine_loader_dbg_info() for the !__ELF__ case.

parent 97ea6fff
......@@ -968,9 +968,9 @@ BOOL elf_synchronize_module_list(struct process* pcs)
return FALSE;
}
unsigned long elf_read_wine_loader_dbg_info(struct process* pcs)
BOOL elf_read_wine_loader_dbg_info(struct process* pcs)
{
return -1;
return FALSE;
}
struct module* elf_load_module(struct process* pcs, const char* name)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment