mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 12:19:49 +00:00
Fix elf_read_wine_loader_dbg_info() for the !__ELF__ case.
This commit is contained in:
parent
97ea6fffde
commit
c4a5c7359b
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue