From 7636cac62a401fd4b3c1fc0c1700a57c4e75adbe Mon Sep 17 00:00:00 2001 From: Julian Seward Date: Thu, 6 Apr 2006 13:31:17 +0000 Subject: [PATCH] Avoid compiler warnings on ppc64-linux. git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5829 --- coregrind/m_debuginfo/readelf.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/coregrind/m_debuginfo/readelf.c b/coregrind/m_debuginfo/readelf.c index 89fb2ab9e9..20ca620783 100644 --- a/coregrind/m_debuginfo/readelf.c +++ b/coregrind/m_debuginfo/readelf.c @@ -385,7 +385,7 @@ Bool get_elf_symbol_info ( static __attribute__((unused)) /* not referred to on all targets */ void read_elf_symtab__normal( - struct _SegInfo* si, Char* tab_name, + struct _SegInfo* si, UChar* tab_name, ElfXX_Sym* o_symtab, UInt o_symtab_sz, UChar* o_strtab, UInt o_strtab_sz, UChar* opd_filea /* ppc64-linux only */ @@ -1157,7 +1157,7 @@ Bool ML_(read_elf_debug_info) ( struct _SegInfo* si ) /* Read symbols */ { - void (*read_elf_symtab)(struct _SegInfo*,Char*,ElfXX_Sym*, + void (*read_elf_symtab)(struct _SegInfo*,UChar*,ElfXX_Sym*, UInt,UChar*,UInt,UChar*); # if defined(VGP_ppc64_linux) read_elf_symtab = read_elf_symtab__ppc64_linux; -- 2.47.2