Fix cast to 'gdb_breakpoint *'
authorYao Qi <yao.qi@linaro.org>
Thu, 21 Jul 2016 13:34:07 +0000 (14:34 +0100)
committerYao Qi <yao.qi@linaro.org>
Thu, 21 Jul 2016 13:34:07 +0000 (14:34 +0100)
c-mode buildbot catches a build problem,

gcc -g -O2    -I. -I../../../binutils-gdb/gdb/gdbserver -I../../../binutils-gdb/gdb/gdbserver/../common -I../../../binutils-gdb/gdb/gdbserver/../regformats -I../../../binutils-gdb/gdb/gdbserver/.. -I../../../binutils-gdb/gdb/gdbserver/../../include -I../../../binutils-gdb/gdb/gdbserver/../gnulib/import -Ibuild-gnulib-gdbserver/import  -Wall -Wpointer-arith -Wno-unused -Wunused-value -Wunused-function -Wno-switch -Wno-char-subscripts -Wempty-body -Wpointer-sign -Wmissing-prototypes -Wdeclaration-after-statement -Wmissing-parameter-type -Wold-style-declaration -Wold-style-definition -Wformat-nonliteral -Wno-missing-prototypes -Werror -DGDBSERVER -c -o hostio.o -MT hostio.o -MMD -MP -MF .deps/hostio.Tpo ../../../binutils-gdb/gdb/gdbserver/hostio.c
../../../binutils-gdb/gdb/gdbserver/mem-break.c: In function find_gdb_breakpoint:
../../../binutils-gdb/gdb/gdbserver/mem-break.c:996:15: error: gdb_breakpoint undeclared (first use in this function)
       return (gdb_breakpoint *) bp;

we should use 'struct gdb_breakpoint' rather than 'gdb_breakpoint'.
Patch below fixes this.

gdb/gdbserver:

2016-07-21  Yao Qi  <yao.qi@linaro.org>

* mem-break.c (find_gdb_breakpoint): Cast bp to
'struct gdb_breakpoint *' rather than 'gdb_breakpoint *'.

gdb/gdbserver/ChangeLog
gdb/gdbserver/mem-break.c

index 1592a11c52c8cdf9cd74d6082bead83b433dda73..41567905a8e692dbcd5565ea47d127b049296a37 100644 (file)
@@ -1,3 +1,8 @@
+2016-07-21  Yao Qi  <yao.qi@linaro.org>
+
+       * mem-break.c (find_gdb_breakpoint): Cast bp to
+       'struct gdb_breakpoint *' rather than 'gdb_breakpoint *'.
+
 2016-07-21  Yao Qi  <yao.qi@linaro.org>
 
        * server.c (handle_v_requests): Support s and S actions
index 65ca3f9d3e30442d092fa45382af3befaaf53f30..7cd037f89a00459536207ff67b12e3f9676c9fde 100644 (file)
@@ -996,7 +996,7 @@ find_gdb_breakpoint (char z_type, CORE_ADDR addr, int kind)
   for (bp = proc->breakpoints; bp != NULL; bp = bp->next)
     if (bp->type == type && bp->raw->pc == addr
        && (kind == -1 || bp->raw->kind == kind))
-      return (gdb_breakpoint *) bp;
+      return (struct gdb_breakpoint *) bp;
 
   return NULL;
 }
This page took 0.034624 seconds and 4 git commands to generate.