mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-03-01 13:26:47 +08:00
* 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)
|
||||
|
||||
* h8300-tdep.c, tm-h8300.h: turn off some experimental features
|
||||
|
@ -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:
|
||||
|
Loading…
Reference in New Issue
Block a user