From: Simon Marchi Date: Fri, 31 Jul 2015 18:08:14 +0000 (-0400) Subject: Fix m32r_remove_watchpoint parameter type X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=b1c59ddc809bc4ad2c082b5cae02a18c68746257;p=binutils-gdb.git Fix m32r_remove_watchpoint parameter type This change should have been in the previous patch (Mostly trivial enum fixes). gdb/ChangeLog: * remote-m32r-sdi.c (m32r_remove_watchpoint): Use enum type instead of integer. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index a4074568ec9..66ef8a1c2c6 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2015-07-31 Simon Marchi + + * remote-m32r-sdi.c (m32r_remove_watchpoint): Use enum type + instead of integer. + 2015-07-31 Simon Marchi * aarch64-linux-nat.c (aarch64_linux_can_use_hw_breakpoint): Use enum diff --git a/gdb/remote-m32r-sdi.c b/gdb/remote-m32r-sdi.c index 9c63fd52840..2597f6d8716 100644 --- a/gdb/remote-m32r-sdi.c +++ b/gdb/remote-m32r-sdi.c @@ -1461,9 +1461,8 @@ m32r_insert_watchpoint (struct target_ops *self, } static int -m32r_remove_watchpoint (struct target_ops *self, - CORE_ADDR addr, int len, int type, - struct expression *cond) +m32r_remove_watchpoint (struct target_ops *self, CORE_ADDR addr, int len, + enum target_hw_bp_type type, struct expression *cond) { int i;