* xcoffread.c (xcoff_symfile_read): Make second parameter a
authorJim Kingdon <jkingdon@engr.sgi.com>
Fri, 21 Jan 1994 14:44:29 +0000 (14:44 +0000)
committerJim Kingdon <jkingdon@engr.sgi.com>
Fri, 21 Jan 1994 14:44:29 +0000 (14:44 +0000)
struct section_offsets *, not a (nonexistent) struct section_offset *.

gdb/ChangeLog
gdb/xcoffread.c

index 0b76582d9343488071b7fa773d6be5a176ba4623..28ffae72074396fb8f5c67749303053f43ff5cb4 100644 (file)
@@ -1,5 +1,8 @@
 Fri Jan 21 09:23:33 1994  Jim Kingdon  (kingdon@lioth.cygnus.com)
 
+       * xcoffread.c (xcoff_symfile_read): Make second parameter a
+       struct section_offsets *, not a (nonexistent) struct section_offset *.
+
        * xcoffread.c (read_xcoff_symtab): Make main_aux just a union
        internal_xcoff_symtab, not an array of one of them.  Change lots of
        "main_aux" to "&main_aux" and so on.
index 4819fec9b8ba84f38debef0cb75c837f01a3a217..aac55247ac4999139029cd8d31f9ed5ca8a57dd1 100644 (file)
@@ -168,12 +168,8 @@ xcoff_symfile_init PARAMS ((struct objfile *));
 static void
 xcoff_new_init PARAMS ((struct objfile *));
 
-#ifdef __STDC__
-struct section_offset;
-#endif
-
 static void
-xcoff_symfile_read PARAMS ((struct objfile *, struct section_offset *, int));
+xcoff_symfile_read PARAMS ((struct objfile *, struct section_offsets *, int));
 
 static void
 xcoff_symfile_finish PARAMS ((struct objfile *));
@@ -2017,7 +2013,7 @@ free_debugsection()
 static void
 xcoff_symfile_read (objfile, section_offset, mainline)
   struct objfile *objfile;
-  struct section_offset *section_offset;
+  struct section_offsets *section_offset;
   int mainline;
 {
   int num_symbols;                     /* # of symbols */