aboutsummaryrefslogtreecommitdiff
path: root/gdb/c-valprint.c
diff options
context:
space:
mode:
authorAndrew Cagney <cagney@redhat.com>2003-01-09 18:30:32 +0000
committerAndrew Cagney <cagney@redhat.com>2003-01-09 18:30:32 +0000
commitbde581776ee3d20d2fcd52c8bbc943abf3e4ca89 (patch)
tree41dc7ca131dd119fd185924cf9d084386e7908a0 /gdb/c-valprint.c
parent4ef3f3be7ae2203142ecf69debf476b3545c7653 (diff)
downloadgdb-bde581776ee3d20d2fcd52c8bbc943abf3e4ca89.zip
gdb-bde581776ee3d20d2fcd52c8bbc943abf3e4ca89.tar.gz
gdb-bde581776ee3d20d2fcd52c8bbc943abf3e4ca89.tar.bz2
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/c-valprint.c')
-rw-r--r--gdb/c-valprint.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/c-valprint.c b/gdb/c-valprint.c
index 925d9c5..e7c02cc 100644
--- a/gdb/c-valprint.c
+++ b/gdb/c-valprint.c
@@ -515,7 +515,7 @@ c_value_print (struct value *val, struct ui_file *stream, int format,
if (TYPE_CODE (type) == TYPE_CODE_PTR &&
TYPE_NAME (type) == NULL &&
TYPE_NAME (TYPE_TARGET_TYPE (type)) != NULL &&
- STREQ (TYPE_NAME (TYPE_TARGET_TYPE (type)), "char"))
+ strcmp (TYPE_NAME (TYPE_TARGET_TYPE (type)), "char") == 0)
{
/* Print nothing */
}