diff options
author | Tom Tromey <tom@tromey.com> | 2018-05-16 22:27:50 -0600 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2018-05-23 09:17:00 -0600 |
commit | 4e9668d0d1ddad73af7c20a92a00704fbea2a8d9 (patch) | |
tree | 64086a5c9fce88f392468284e025b7fca6583128 /gdb/complaints.h | |
parent | Remove elements from complaint_series (diff) | |
download | binutils-gdb-4e9668d0d1ddad73af7c20a92a00704fbea2a8d9.tar.gz binutils-gdb-4e9668d0d1ddad73af7c20a92a00704fbea2a8d9.tar.bz2 binutils-gdb-4e9668d0d1ddad73af7c20a92a00704fbea2a8d9.zip |
Remove "noisy" parameter from clear_complaints
After the previous patch, the "noisy" parameter to clear_complaints is
no longer used, so this patch removes it.
gdb/ChangeLog
2018-05-23 Tom Tromey <tom@tromey.com>
* complaints.c (clear_complaints): Remove "noisy" parameter.
* complaints.h (clear_complaints): Update.
* symfile.c (syms_from_objfile_1, finish_new_objfile)
(reread_symbols): Update.
gdb/testsuite/ChangeLog
2018-05-23 Tom Tromey <tom@tromey.com>
* gdb.gdb/complaints.exp (test_empty_complaints): Update.
Diffstat (limited to 'gdb/complaints.h')
-rw-r--r-- | gdb/complaints.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/complaints.h b/gdb/complaints.h index 37648fb5255..652827e47ba 100644 --- a/gdb/complaints.h +++ b/gdb/complaints.h @@ -56,7 +56,7 @@ extern void complaint_internal (struct complaints **complaints, enough context for the user to figure it out. */ extern void clear_complaints (struct complaints **complaints, - int less_verbose, int noisy); + int less_verbose); #endif /* !defined (COMPLAINTS_H) */ |