]> git.ipfire.org Git - thirdparty/valgrind.git/commitdiff
Avoid compiler warnings on ppc64-linux.
authorJulian Seward <jseward@acm.org>
Thu, 6 Apr 2006 13:31:17 +0000 (13:31 +0000)
committerJulian Seward <jseward@acm.org>
Thu, 6 Apr 2006 13:31:17 +0000 (13:31 +0000)
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@5829

coregrind/m_debuginfo/readelf.c

index 89fb2ab9e9b120614b0bd6ad75168ce0403d8fb9..20ca620783a0eb724a2a85c3de97f8a831ed4429 100644 (file)
@@ -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;