diff options
author | John Gilmore <gnu@cygnus> | 1992-06-13 05:24:22 +0000 |
---|---|---|
committer | John Gilmore <gnu@cygnus> | 1992-06-13 05:24:22 +0000 |
commit | 770cde303dea2328014188171b8bdfdfe9c4ef81 (patch) | |
tree | 5de1e0cd056a2e08be85610769b21b93fca500d6 /binutils/objdump.c | |
parent | 18eb7badc4593e5c14b57f4021b1c4212c9d1ef8 (diff) | |
download | gdb-770cde303dea2328014188171b8bdfdfe9c4ef81.zip gdb-770cde303dea2328014188171b8bdfdfe9c4ef81.tar.gz gdb-770cde303dea2328014188171b8bdfdfe9c4ef81.tar.bz2 |
Lint
Diffstat (limited to 'binutils/objdump.c')
-rw-r--r-- | binutils/objdump.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/binutils/objdump.c b/binutils/objdump.c index f6cad22..4e868ea 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -170,11 +170,11 @@ DEFUN (slurp_symtab, (abfd), /* Sort symbols into value order */ static int comp (ap, bp) - asymbol **ap; - asymbol **bp; + PTR ap; + PTR bp; { - asymbol *a = *ap; - asymbol *b = *bp; + asymbol *a = *(asymbol **)ap; + asymbol *b = *(asymbol **)bp; int diff; if (a->name == (char *) NULL || (a->flags & (BSF_DEBUGGING))) |