* libbfd.h, libbfd-in.h (bfd_seek): Make prototype match definition.
authorFred Fish <fnf@specifix.com>
Wed, 24 Jun 1992 04:56:01 +0000 (04:56 +0000)
committerFred Fish <fnf@specifix.com>
Wed, 24 Jun 1992 04:56:01 +0000 (04:56 +0000)
* reloc.c (bfd_default_reloc_type_lookup):  Make cast on return
type match actual return type.
* elf_print_symbol (section_name):  Make CONST.

bfd/ChangeLog
bfd/elf.c
bfd/libbfd.h

index d2e4371..9eb249e 100644 (file)
@@ -1,3 +1,10 @@
+Tue Jun 23 21:54:44 1992  Fred Fish  (fnf@cygnus.com)
+
+       * libbfd.h, libbfd-in.h (bfd_seek):  Make prototype match definition.
+       * reloc.c (bfd_default_reloc_type_lookup):  Make cast on return
+       type match actual return type.
+       * elf_print_symbol (section_name):  Make CONST.
+
 Mon Jun 22 17:35:24 1992  Per Bothner  (bothner@cygnus.com)
 
        * i386linux.c, hosts/i386linux.h, config/i386-linux.mt:
index f437ce9..26b2a1e 100644 (file)
--- a/bfd/elf.c
+++ b/bfd/elf.c
@@ -2357,7 +2357,7 @@ DEFUN (elf_print_symbol,(ignore_abfd, filep, symbol, how),
     case bfd_print_symbol_nm:
     case bfd_print_symbol_all:
       {
-       char *section_name;
+       CONST char *section_name;
        section_name = symbol->section? symbol->section->name : "(*none*)";
        bfd_print_symbol_vandf((PTR) file, symbol);
        fprintf(file, " %-5s %s %s %s",
index be1622e..aee8fdc 100644 (file)
@@ -80,7 +80,7 @@ PROTO (bfd_size_type, bfd_write, (CONST PTR ptr, bfd_size_type size, bfd_size_ty
 
 
 
-PROTO (int, bfd_seek,(bfd* abfd, file_ptr fp , int direction));
+PROTO (int, bfd_seek,(bfd* CONST abfd, CONST file_ptr fp , CONST int direction));
 PROTO (long, bfd_tell, (bfd *abfd));
 PROTO (bfd *, _bfd_create_empty_archive_element_shell, (bfd *obfd));
 PROTO (bfd *, look_for_bfd_in_cache, (bfd *arch_bfd, file_ptr index));