diff options
author | Fred Fish <fnf@specifix.com> | 1993-10-08 23:04:45 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1993-10-08 23:04:45 +0000 |
commit | a71c0593c6f836e5e6607619209938dff0e7a093 (patch) | |
tree | 86301b457663ec9c4c902a3a1370cf6d561110c9 /gdb/xcoffsolib.h | |
parent | 22d33fb2f56e233cc6d5f7bb80e8d3883e4aa098 (diff) | |
download | gdb-a71c0593c6f836e5e6607619209938dff0e7a093.zip gdb-a71c0593c6f836e5e6607619209938dff0e7a093.tar.gz gdb-a71c0593c6f836e5e6607619209938dff0e7a093.tar.bz2 |
* osfsolib.c, remote-sim.c, remote.c, solib.c, xcoffexec.c,
xcoffsolib.h: Use 'abfd' for bfd variables instead of 'bfd'.
Sun cc doesn't like variable names that match their typedef'd type.
Diffstat (limited to 'gdb/xcoffsolib.h')
-rw-r--r-- | gdb/xcoffsolib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/xcoffsolib.h b/gdb/xcoffsolib.h index 5be3533..2539ac0 100644 --- a/gdb/xcoffsolib.h +++ b/gdb/xcoffsolib.h @@ -28,7 +28,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ struct vmap { struct vmap *nxt; /* ^ to next in chain */ - bfd *bfd; /* BFD for mappable object library */ + bfd *abfd; /* BFD for mappable object library */ char *name; /* ^ to object file name */ char *member; /* ^ to member name */ CORE_ADDR tstart; /* virtual addr where member is mapped */ |