diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2015-11-03 13:33:13 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2015-11-03 13:33:13 -0500 |
commit | 171de4b8fb2bfe1be8a2f7f479047e51da05883e (patch) | |
tree | 6584abae92e5c715c513a0502820552473881b86 /gdb/gdbserver/linux-arm-low.c | |
parent | 04248ead1f57204119180022580626e31c165f60 (diff) | |
download | binutils-171de4b8fb2bfe1be8a2f7f479047e51da05883e.zip binutils-171de4b8fb2bfe1be8a2f7f479047e51da05883e.tar.gz binutils-171de4b8fb2bfe1be8a2f7f479047e51da05883e.tar.bz2 |
Change return type of raw_bkpt_type_to_arm_hwbp_type
Fixes:
/home/simark/src/binutils-gdb/gdb/gdbserver/linux-arm-low.c: In function ‘int arm_linux_hw_point_initialize(raw_bkpt_type, CORE_ADDR, int, arm_linux_hw_breakpoint*)’:
/home/simark/src/binutils-gdb/gdb/gdbserver/linux-arm-low.c:459:55: error: invalid conversion from ‘int’ to ‘arm_hwbp_type’ [-fpermissive]
hwbp_type = raw_bkpt_type_to_arm_hwbp_type (raw_type);
^
gdb/gdbserver/ChangeLog:
* linux-arm-low.c (raw_bkpt_type_to_arm_hwbp_type):
Change return type to arm_hwbp_type.
Diffstat (limited to 'gdb/gdbserver/linux-arm-low.c')
-rw-r--r-- | gdb/gdbserver/linux-arm-low.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/gdbserver/linux-arm-low.c b/gdb/gdbserver/linux-arm-low.c index ae659dd..dda37cb 100644 --- a/gdb/gdbserver/linux-arm-low.c +++ b/gdb/gdbserver/linux-arm-low.c @@ -426,7 +426,7 @@ arm_linux_hw_breakpoint_equal (const struct arm_linux_hw_breakpoint *p1, /* Convert a raw breakpoint type to an enum arm_hwbp_type. */ -static int +static arm_hwbp_type raw_bkpt_type_to_arm_hwbp_type (enum raw_bkpt_type raw_type) { switch (raw_type) |