Sun Jan 31 04:32:48 1993 Michael Tiemann (tiemann@rtl.cygnus.com)
* gdbtypes.c (lookup_struct_elt_type): Pass NOERR instead of zero on recursive call.
This commit is contained in:
parent
a50b5d9d6d
commit
d112a0c664
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
Sun Jan 31 04:32:48 1993 Michael Tiemann (tiemann@rtl.cygnus.com)
|
||||
|
||||
* gdbtypes.c (lookup_struct_elt_type): Pass NOERR instead of
|
||||
zero on recursive call.
|
||||
|
||||
Sat Jan 30 19:55:52 1993 John Gilmore (gnu@cygnus.com)
|
||||
|
||||
* hppah-nat.c: Eliminate <sys/user.h> and other unnecessary stuff,
|
||||
|
|
|
@ -733,7 +733,7 @@ lookup_struct_elt_type (type, name, noerr)
|
|||
{
|
||||
struct type *t;
|
||||
|
||||
t = lookup_struct_elt_type (TYPE_BASECLASS (type, i), name, 0);
|
||||
t = lookup_struct_elt_type (TYPE_BASECLASS (type, i), name, noerr);
|
||||
if (t != NULL)
|
||||
{
|
||||
return t;
|
||||
|
|
Loading…
Add table
Reference in a new issue