* xcoffread.c (process_xcoff_symbol, read_symbol_lineno): complain

expects a pointer to complaint rather than a complaint
	  structure.
This commit is contained in:
K. Richard Pixley 1993-02-12 23:48:36 +00:00
parent e61cfdf820
commit e99163901e
2 changed files with 9 additions and 3 deletions

View 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

View 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: