2003-01-09 Andrew Cagney <ac131313@redhat.com>
[deliverable/binutils-gdb.git] / gdb / ax-gdb.c
index fa7066c7f96943924b7a3fa8468f73092a7efbfe..f2255f56498cde42a6f5aa9bf41b6e8330992e57 100644 (file)
@@ -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')
This page took 0.024178 seconds and 4 git commands to generate.