diff options
author | Andrew Cagney <cagney@redhat.com> | 2003-01-09 18:30:32 +0000 |
---|---|---|
committer | Andrew Cagney <cagney@redhat.com> | 2003-01-09 18:30:32 +0000 |
commit | cf0396f62d4a996a788bf15632d59f46476da6b5 (patch) | |
tree | 13d17da3bdffb70ad993bc6cfef63cb37d879a0a /gdb/ax-gdb.c | |
parent | c27bdee1cd22bf097ccf987f2b13d6e70c2759b8 (diff) | |
download | gdb-cf0396f62d4a996a788bf15632d59f46476da6b5.tar.gz |
2003-01-09 Andrew Cagney <ac131313@redhat.com>
* somsolib.h: Fix function indentation.
* disasm.c, buildsym.c, buildsym.h: Eliminate PTR.
* gnu-v2-abi.c, f-typeprint.c, x86-64-linux-tdep.c: Eliminate STREQ.
* demangle.c, ax-gdb.c, c-valprint.c: Eliminate STREQ.
* alpha-osf1-tdep.c, corefile.c: Eliminate STREQ.
* somsolib.c, inftarg.c: Remove assignment in if conditional.
Diffstat (limited to 'gdb/ax-gdb.c')
-rw-r--r-- | gdb/ax-gdb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/ax-gdb.c b/gdb/ax-gdb.c index fa7066c7f96..f2255f56498 100644 --- a/gdb/ax-gdb.c +++ b/gdb/ax-gdb.c @@ -1157,7 +1157,7 @@ find_field (struct type *type, char *name) { char *this_name = TYPE_FIELD_NAME (type, i); - if (this_name && STREQ (name, this_name)) + if (this_name && strcmp (name, this_name) == 0) return i; if (this_name[0] == '\0') |