diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 2000-02-08 04:39:02 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 2000-02-08 04:39:02 +0000 |
commit | 745b8ca0fc4d987837a24d1ed5f53006478d2716 (patch) | |
tree | d6471c55e430ad890aabc21f06dc169bfd5cba58 /gdb/ch-exp.c | |
parent | 1171f8d754f71e35fd2f6c4e82b00f3c685e515f (diff) | |
download | gdb-745b8ca0fc4d987837a24d1ed5f53006478d2716.zip gdb-745b8ca0fc4d987837a24d1ed5f53006478d2716.tar.gz gdb-745b8ca0fc4d987837a24d1ed5f53006478d2716.tar.bz2 |
Clean up compiler warnings:
* bcache.h, bcache.c, c-valprint.c, coffread.c, stabsread.c,
stack.c, valprint.c: Change variables to unsigned.
* bcache.c: Rearrange to avoid warnings about variables not being set.
* c-lang.c, ch-lang.c, f-lang.c, m2-lang.c: Include valprint.h
rather than declaring print_max and repeat_count_threashold
ourselves (incorrectly).
* valprint.h: Do declare repeat_count_threashold.
* ch-exp.c: Use default case for internal error.
* findvar.c: Don't omit argument type.
* symtab.c: Remove unused variable.
Diffstat (limited to 'gdb/ch-exp.c')
-rw-r--r-- | gdb/ch-exp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gdb/ch-exp.c b/gdb/ch-exp.c index 1b22e25..7892475 100644 --- a/gdb/ch-exp.c +++ b/gdb/ch-exp.c @@ -2192,8 +2192,8 @@ ch_lex () case LOC_OPTIMIZED_OUT: error ("Symbol \"%s\" names no location.", inputname); break; - case LOC_UNRESOLVED: - error ("unhandled SYMBOL_CLASS in ch_lex()"); + default: + internal_error ("unhandled SYMBOL_CLASS in ch_lex()"); break; } } |