diff options
author | Paul Brook <paul@codesourcery.com> | 2010-03-01 03:55:48 +0000 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2010-03-01 04:39:50 +0000 |
commit | 9f9f030928a3d17ea8b87905fafc1e447328df2d (patch) | |
tree | a4d9de05081b0d3663d8fc93b43f536ec0908f02 /linux-user/elfload.c | |
parent | 35bed8ee918b519caca37f99f741b2740a040da3 (diff) | |
download | qemu-9f9f030928a3d17ea8b87905fafc1e447328df2d.zip |
Disassembler symbol lookup fix
Fix function signature for userspace disassembler symbol lookup.
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'linux-user/elfload.c')
-rw-r--r-- | linux-user/elfload.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/linux-user/elfload.c b/linux-user/elfload.c index 1d5f6518ce..71ed2d60d1 100644 --- a/linux-user/elfload.c +++ b/linux-user/elfload.c @@ -1448,10 +1448,10 @@ static void load_symbols(struct elfhdr *hdr, int fd) s->disas_num_syms = nsyms; #if ELF_CLASS == ELFCLASS32 s->disas_symtab.elf32 = syms; - s->lookup_symbol = (lookup_symbol_t)lookup_symbolxx; + s->lookup_symbol = lookup_symbolxx; #else s->disas_symtab.elf64 = syms; - s->lookup_symbol = (lookup_symbol_t)lookup_symbolxx; + s->lookup_symbol = lookup_symbolxx; #endif s->next = syminfos; syminfos = s; |