Sun Jan 31 04:32:48 1993 Michael Tiemann (tiemann@rtl.cygnus.com)
authorMichael Tiemann <tiemann@cygnus>
Sun, 31 Jan 1993 12:39:22 +0000 (12:39 +0000)
committerMichael Tiemann <tiemann@cygnus>
Sun, 31 Jan 1993 12:39:22 +0000 (12:39 +0000)
* gdbtypes.c (lookup_struct_elt_type): Pass NOERR instead of
zero on recursive call.

gdb/ChangeLog
gdb/gdbtypes.c

index 12f05fc9bb371334b12d6bd7ad4e13500b382582..dc61420eec66da146a95fde1304fbff7ff4a4908 100644 (file)
@@ -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,
index b5caccff83c415761035daba503c5b8af567e864..57871796fca4a3f568157666198e47366ca7f418 100644 (file)
@@ -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;