warning: silence gcc by initializing local variables
GCC doesn't understand that these are in fact initialized if they are used. Change-Id: I01988adb0547f785b48d869ddbe44cc17dca4739 Signed-off-by: Øyvind Harboe <oyvind.harboe@zylin.com> Reviewed-on: http://openocd.zylin.com/116 Tested-by: jenkins Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>__archive__
parent
8e8ff02b74
commit
e5fd6131fe
|
@ -1352,7 +1352,7 @@ static int dap_info_command(struct command_context *cmd_ctx,
|
|||
struct adiv5_dap *dap, int ap)
|
||||
{
|
||||
int retval;
|
||||
uint32_t dbgbase, apid;
|
||||
uint32_t dbgbase = 0, apid = 0; /* Silence gcc by initializing */
|
||||
int romtable_present = 0;
|
||||
uint8_t mem_ap;
|
||||
uint32_t ap_old;
|
||||
|
|
Loading…
Reference in New Issue