Use gdb_byte * instead of void * in push_stack_item
authorYao Qi <yao.qi@linaro.org>
Thu, 12 Nov 2015 09:14:20 +0000 (09:14 +0000)
committerYao Qi <yao.qi@linaro.org>
Thu, 12 Nov 2015 09:14:20 +0000 (09:14 +0000)
gdb:

2015-11-12  Yao Qi  <yao.qi@linaro.org>

* arm-tdep.c (push_stack_item): Change contents type to
const gdb_byte *.

gdb/ChangeLog
gdb/arm-tdep.c

index cd5b9e7..f21cf2e 100644 (file)
@@ -1,3 +1,8 @@
+2015-11-12  Yao Qi  <yao.qi@linaro.org>
+
+       * arm-tdep.c (push_stack_item): Change contents type to
+       const gdb_byte *.
+
 2015-11-11  Simon Marchi  <simon.marchi@ericsson.com>
 
        * inf-ptrace.c (inf_ptrace_fetch_register): Change long int *
index 308d484..4a8d03b 100644 (file)
@@ -3395,7 +3395,7 @@ struct stack_item
 };
 
 static struct stack_item *
-push_stack_item (struct stack_item *prev, const void *contents, int len)
+push_stack_item (struct stack_item *prev, const gdb_byte *contents, int len)
 {
   struct stack_item *si;
   si = XNEW (struct stack_item);