From b107aaf90e6e324b3de872fdbf04067a81ce574b Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Tue, 30 Jan 1996 18:32:39 +0000 Subject: [PATCH] Don't include . Don't compare strchr result to NULL. From-SVN: r11125 --- gcc/dbxout.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/gcc/dbxout.c b/gcc/dbxout.c index 256d1aa1174..3ff1a2ca0c6 100644 --- a/gcc/dbxout.c +++ b/gcc/dbxout.c @@ -70,7 +70,6 @@ Boston, MA 02111-1307, USA. */ /* Include these first, because they may define MIN and MAX. */ #include #include -#include #include "config.h" #include "tree.h" @@ -932,7 +931,7 @@ dbxout_type_methods (type) #else marker = '.'; #endif - if (strchr (debug_name, marker) != NULL) + if (strchr (debug_name, marker)) show_arg_types = 1; /* Detect ordinary methods because their mangled names start with the operation name. */ -- 2.30.2