* xcoffread.c (process_xcoff_symbol, read_symbol_lineno): complain
expects a pointer to complaint rather than a complaint structure.
This commit is contained in:
parent
e61cfdf820
commit
e99163901e
|
@ -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)
|
Fri Feb 12 08:06:05 1993 Steve Chamberlain (sac@thepub.cygnus.com)
|
||||||
|
|
||||||
* h8300-tdep.c, tm-h8300.h: turn off some experimental features
|
* h8300-tdep.c, tm-h8300.h: turn off some experimental features
|
||||||
|
|
|
@ -1905,13 +1905,13 @@ process_xcoff_symbol (cs, objfile)
|
||||||
return sym;
|
return sym;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
complain (rsym_complaint, name);
|
complain (&rsym_complaint, name);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
default :
|
default :
|
||||||
complain (storclass_complaint, cs->c_sclass);
|
complain (&storclass_complaint, cs->c_sclass);
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -1949,7 +1949,7 @@ read_symbol_lineno (symtable, symno)
|
||||||
symno += symbol->n_numaux+1;
|
symno += symbol->n_numaux+1;
|
||||||
}
|
}
|
||||||
|
|
||||||
complain (bf_notfound_complaint);
|
complain (&bf_notfound_complaint);
|
||||||
return 0;
|
return 0;
|
||||||
|
|
||||||
gotit:
|
gotit:
|
||||||
|
|
Loading…
Reference in New Issue