* xcoffread.c (process_xcoff_symbol, read_symbol_lineno): complain
authorK. Richard Pixley <rich@cygnus>
Fri, 12 Feb 1993 23:48:36 +0000 (23:48 +0000)
committerK. Richard Pixley <rich@cygnus>
Fri, 12 Feb 1993 23:48:36 +0000 (23:48 +0000)
  expects a pointer to complaint rather than a complaint
  structure.

gdb/ChangeLog
gdb/xcoffread.c

index b1f201b7425c764729339e0dd104fcb034f71129..cdd7d07d98f519aba5c7f681c82ee4c7b3f7696e 100644 (file)
@@ -1,3 +1,9 @@
+Fri Feb 12 15:46:49 1993  K. Richard Pixley  (rich@cygnus.com)
+
+       * xcoffread.c (process_xcoff_symbol, read_symbol_lineno): complain
+         expects a pointer to complaint rather than a complaint
+         structure.
+
 Fri Feb 12 08:06:05 1993  Steve Chamberlain  (sac@thepub.cygnus.com)
 
        * h8300-tdep.c, tm-h8300.h: turn off some experimental features
index 6bc1d5bf1eef93271a5402c5a97cc52f2b64c7d7..892adb5f8f621f50c5ae2c4b4fc34a75843e6974 100644 (file)
@@ -1905,13 +1905,13 @@ process_xcoff_symbol (cs, objfile)
          return sym;
        }
        else {
-         complain (rsym_complaint, name);
+         complain (&rsym_complaint, name);
          return NULL;
        }
 #endif
 
     default    :
-      complain (storclass_complaint, cs->c_sclass);
+      complain (&storclass_complaint, cs->c_sclass);
       return NULL;
     }
   }
@@ -1949,7 +1949,7 @@ read_symbol_lineno (symtable, symno)
     symno += symbol->n_numaux+1;
   }
 
-  complain (bf_notfound_complaint);
+  complain (&bf_notfound_complaint);
   return 0;
 
 gotit: