diff options
author | Jim Blandy <jimb@codesourcery.com> | 2002-02-20 00:26:46 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2002-02-20 00:26:46 +0000 |
commit | 5832ed7e43b777bc93783dac030e92ad9bba75f7 (patch) | |
tree | ec1b70c4fe15811df7b5e8144ac35ff4a1e6873f /gdb | |
parent | 077acb315c7e58acff1ce66f96e608b5431f7441 (diff) | |
download | gdb-5832ed7e43b777bc93783dac030e92ad9bba75f7.zip gdb-5832ed7e43b777bc93783dac030e92ad9bba75f7.tar.gz gdb-5832ed7e43b777bc93783dac030e92ad9bba75f7.tar.bz2 |
* stabsread.c (error_type_complaint): Improve error message.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/ChangeLog | 4 | ||||
-rw-r--r-- | gdb/stabsread.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 4827b34..8737428 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,7 @@ +2002-02-19 Jim Blandy <jimb@redhat.com> + + * stabsread.c (error_type_complaint): Improve error message. + 2002-02-19 Daniel Jacobowitz <drow@mvista.com> * gdbserver/README: Update documentation. diff --git a/gdb/stabsread.c b/gdb/stabsread.c index e990f9d..190fc15 100644 --- a/gdb/stabsread.c +++ b/gdb/stabsread.c @@ -212,7 +212,7 @@ static struct complaint const_vol_complaint = {"const/volatile indicator missing, got '%c'", 0, 0}; static struct complaint error_type_complaint = -{"debug info mismatch between compiler and debugger", 0, 0}; +{"During symbol reading, couldn't parse type; debugger out of date?", 0, 0}; static struct complaint invalid_member_complaint = {"invalid (minimal) member type data format at symtab pos %d.", 0, 0}; |