Browse Source

2002-02-03 Daniel Jacobowitz <drow@mvista.com>

* ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
        of accessing tag_name directly.
binutils-2_12-branch
Daniel Jacobowitz 25 years ago
parent
commit
7495dfdb3a
  1. 5
      gdb/ChangeLog
  2. 2
      gdb/ax-gdb.c

5
gdb/ChangeLog

@ -1,3 +1,8 @@
2002-02-03 Daniel Jacobowitz <drow@mvista.com>
* ax-gdb.c (find_field): Use TYPE_TAG_NAME instead
of accessing tag_name directly.
2002-02-03 Daniel Jacobowitz <drow@mvista.com>
PR gdb/280

2
gdb/ax-gdb.c

@ -1165,7 +1165,7 @@ find_field (struct type *type, char *name)
}
error ("Couldn't find member named `%s' in struct/union `%s'",
name, type->tag_name);
name, TYPE_TAG_NAME (type));
return 0;
}

Loading…
Cancel
Save