diff options
author | Simon Marchi <simon.marchi@ericsson.com> | 2015-08-06 12:01:05 -0400 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2015-08-06 12:01:05 -0400 |
commit | 05d999b0896ab6ccd4ce23a715765484c60a967d (patch) | |
tree | 66282e3077179b8c79ea5fccc80a776a0bf77f6a /gdb/ChangeLog | |
parent | f0ce0d3a331129309a46a6a9ac85fce35acae72b (diff) | |
download | gdb-05d999b0896ab6ccd4ce23a715765484c60a967d.zip gdb-05d999b0896ab6ccd4ce23a715765484c60a967d.tar.gz gdb-05d999b0896ab6ccd4ce23a715765484c60a967d.tar.bz2 |
Change type of struct complaints::series
Found while processing the C++ enum changes. It seems like series
should be of type enum complaint_series, instead of adding a cast.
Redundant and out of date comments are also removed.
gdb/ChangeLog:
* complaints.c (enum complaint_series): Add newlines and remove
out of date comment.
(struct complaints) <series>: Change type to enum
complaint_series and remove out of date comment.
(symfile_complaint_hook): Use equivalent enum value
ISOLATED_MESSAGE instead of 0.
Diffstat (limited to 'gdb/ChangeLog')
-rw-r--r-- | gdb/ChangeLog | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 193581f..6c854ac 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,12 @@ +2015-08-06 Simon Marchi <simon.marchi@ericsson.com> + + * complaints.c (enum complaint_series): Add newlines and remove + out of date comment. + (struct complaints) <series>: Change type to enum + complaint_series and remove out of date comment. + (symfile_complaint_hook): Use equivalent enum value + ISOLATED_MESSAGE instead of 0. + 2015-08-06 Pedro Alves <palves@redhat.com> * nat/linux-waitpid.c (my_waitpid): Only print *status if waitpid |