diff options
author | Alexandre Oliva <aoliva@redhat.com> | 2001-05-29 10:45:10 +0000 |
---|---|---|
committer | Alexandre Oliva <aoliva@redhat.com> | 2001-05-29 10:45:10 +0000 |
commit | ef808e738a4910cb9c0980330cb6b020218fe7aa (patch) | |
tree | 236320b0996119fb3e5a5a32a60365bd1b559a3c /gdb/mdebugread.c | |
parent | 9fc9127d5e17fdefc5e047d6079e893a1ca1f144 (diff) | |
download | gdb-ef808e738a4910cb9c0980330cb6b020218fe7aa.tar.gz |
* symfile.c (compare_psymbols, compare_symbols): Declare using
PTR, as in the definition.
* minsyms.c (compare_minimal_symbols): Likewise.
* coffread.c (find_targ_sec): Likewise.
* elfread.c (free_elfinfo, elf_locate_sections): Likewise.
* mipsread.c (alphacoff_locate_sections): Likewise.
* mdebugread.c (compare_blocks): Likewise.
Diffstat (limited to 'gdb/mdebugread.c')
-rw-r--r-- | gdb/mdebugread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/mdebugread.c b/gdb/mdebugread.c index 401a09ee086..aab357e005e 100644 --- a/gdb/mdebugread.c +++ b/gdb/mdebugread.c @@ -378,7 +378,7 @@ static PTR xzalloc (unsigned int); static void sort_blocks (struct symtab *); -static int compare_blocks (const void *, const void *); +static int compare_blocks (const PTR, const PTR); static struct partial_symtab *new_psymtab (char *, struct objfile *); |