diff options
author | Alan Modra <amodra@gmail.com> | 2002-06-08 07:38:30 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-06-08 07:38:30 +0000 |
commit | b1f88ebebf2f43710223a81747ee7d8504e94b47 (patch) | |
tree | 2cce7118cc9aadab09206468cfd11d6c338adfeb /binutils/objdump.c | |
parent | 5a38dc70b43becf6e5865c90d5dcaf254f5af0e1 (diff) | |
download | gdb-b1f88ebebf2f43710223a81747ee7d8504e94b47.zip gdb-b1f88ebebf2f43710223a81747ee7d8504e94b47.tar.gz gdb-b1f88ebebf2f43710223a81747ee7d8504e94b47.tar.bz2 |
* bucomm.c: Replace CONST with const.
* nm.c: Likewise.
* objdump.c: Likewise.
Diffstat (limited to 'binutils/objdump.c')
-rw-r--r-- | binutils/objdump.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/binutils/objdump.c b/binutils/objdump.c index 59a1731..4dbb123 100644 --- a/binutils/objdump.c +++ b/binutils/objdump.c @@ -957,8 +957,8 @@ show_line (abfd, section, addr_offset) asection *section; bfd_vma addr_offset; { - CONST char *filename; - CONST char *functionname; + const char *filename; + const char *functionname; unsigned int line; if (! with_line_numbers && ! with_source_code) @@ -2543,7 +2543,7 @@ dump_reloc_set (abfd, sec, relpp, relcount) } else { - if (section_name == (CONST char *) NULL) + if (section_name == (const char *) NULL) section_name = "*unknown*"; bfd_printf_vma (abfd, q->address); printf (" %-16s [%s]", |