diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-09-02 01:41:40 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1993-09-02 01:41:40 +0000 |
commit | 996ccb3043d9237ea8e6e79d6a7c6121b15f9e61 (patch) | |
tree | 0dfcfdfd7f957068352137d70e996b8a100926c1 /gdb/buildsym.c | |
parent | e4d30c7e6abccf8402a5c48743a829cd6633ee98 (diff) | |
download | gdb-996ccb3043d9237ea8e6e79d6a7c6121b15f9e61.zip gdb-996ccb3043d9237ea8e6e79d6a7c6121b15f9e61.tar.gz gdb-996ccb3043d9237ea8e6e79d6a7c6121b15f9e61.tar.bz2 |
* symtab.c, symfile.c, c-exp.y, ch-exp.y, m2-exp.y, buildsym.c,
symfile.h, stabsread.c, minsyms.c, solib.c, nlmread.c, dwarfread.c
partial-stab.h, symmisc.c, gdbtypes.c: Lint. Remove (or put
inside #if) unused variables and labels. Fix unclosed comment.
Deal with enumeration values unhandled in switch statements. Make
sure non-void functions return values. Include appropriate
headers.
* dbxread.c (elfstab_build_psymtabs): Don't check for unsigned
value < 0.
Diffstat (limited to 'gdb/buildsym.c')
-rw-r--r-- | gdb/buildsym.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/buildsym.c b/gdb/buildsym.c index 4ba512f..48b1a82 100644 --- a/gdb/buildsym.c +++ b/gdb/buildsym.c @@ -432,8 +432,8 @@ start_subfile (name, dirname) p = strrchr (subfile->name, '.'); if (p != NULL - && (p[1] == 'C' && p[2] == '\0' - || p[1] == 'c' && p[2] == 'c' && p[3] == '\0')) + && ((p[1] == 'C' && p[2] == '\0') + || (p[1] == 'c' && p[2] == 'c' && p[3] == '\0'))) for (s = subfiles; s != NULL; s = s->next) if (s->language == language_c) s->language = language_cplus; |