Fix build failure in darwin-nat.c

Fix:

/Users/simark/src/binutils-gdb/gdb/darwin-nat.c:2404:3: error: no matching function for call to 'add_setshow_boolean_cmd'
  add_setshow_boolean_cmd ("mach-exceptions", class_support,
  ^~~~~~~~~~~~~~~~~~~~~~~

gdb/ChangeLog:

	* darwin-nat.c (set_enable_mach_exceptions): Constify parameter.
This commit is contained in:
Simon Marchi 2017-11-20 23:29:10 -05:00
parent 0ee5a0e483
commit 0fc7642151
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2017-11-20 Simon Marchi <simon.marchi@polymtl.ca>
* darwin-nat.c (set_enable_mach_exceptions): Constify parameter.
2017-11-21 Pedro Alves <palves@redhat.com>
* dwarf2read.c (mapped_index::find_name_components_bounds)

View File

@ -2229,7 +2229,7 @@ darwin_xfer_partial (struct target_ops *ops,
}
static void
set_enable_mach_exceptions (char *args, int from_tty,
set_enable_mach_exceptions (const char *args, int from_tty,
struct cmd_list_element *c)
{
if (!ptid_equal (inferior_ptid, null_ptid))