aboutsummaryrefslogtreecommitdiff
path: root/gdb/gdbserver/ChangeLog
diff options
context:
space:
mode:
authorYao Qi <yao.qi@linaro.org>2016-10-24 10:59:11 +0100
committerYao Qi <yao.qi@linaro.org>2016-10-24 11:07:24 +0100
commitcb93dc7f262978bafe36397a41a56e409a302042 (patch)
tree61ca0faa7a5caf39539715b1dbea0e48fb4ab4ea /gdb/gdbserver/ChangeLog
parent638101973de1d316fcb7d4b6a37fa194b61bfaad (diff)
downloadgdb-cb93dc7f262978bafe36397a41a56e409a302042.zip
gdb-cb93dc7f262978bafe36397a41a56e409a302042.tar.gz
gdb-cb93dc7f262978bafe36397a41a56e409a302042.tar.bz2
[GDBserver] Fix conversion warning
I got the following warning if I build GDBserver for aarch64_be-linux-gnu, git/gdb/gdbserver/linux-aarch64-low.c:1539:39: error: invalid conversion from 'void*' to 'uint32_t* {aka unsigned int*}' [-fpermissive] uint32_t *le_buf = xmalloc (byte_len); ^ The patch is to fix the warning. gdb/gdbserver: 2016-10-24 Yao Qi <yao.qi@linaro.org> PR server/20733 * linux-aarch64-low.c (append_insns): Cast the return value to 'uint32_t *'.
Diffstat (limited to 'gdb/gdbserver/ChangeLog')
-rw-r--r--gdb/gdbserver/ChangeLog6
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/gdbserver/ChangeLog b/gdb/gdbserver/ChangeLog
index 1064fcf..437bb4c 100644
--- a/gdb/gdbserver/ChangeLog
+++ b/gdb/gdbserver/ChangeLog
@@ -1,3 +1,9 @@
+2016-10-24 Yao Qi <yao.qi@linaro.org>
+
+ PR server/20733
+ * linux-aarch64-low.c (append_insns): Cast the return value to
+ 'uint32_t *'.
+
2016-10-10 Yao Qi <yao.qi@linaro.org>
* linux-aarch32-low.c (enum arm_breakpoint_kinds): Remove.