From: oharboe Date: Wed, 5 Mar 2008 19:33:53 +0000 (+0000) Subject: warnings & comments fixes. X-Git-Tag: v0.1.0~840 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=087ccf3b6e1fb75f574b8b388fc51b86312518f6;p=openocd warnings & comments fixes. git-svn-id: svn://svn.berlios.de/openocd/trunk@449 b42882b7-edfa-0310-969c-e2dbd0fdcd60 --- diff --git a/src/target/target.c b/src/target/target.c index 06abb37c..baf57565 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -362,11 +362,9 @@ int target_process_reset(struct command_context_s *cmd_ctx) command_print(cmd_ctx, "Timed out waiting for reset"); goto done; } - /* this will send alive messages on e.g. GDB remote protocol. - * GDB warns me that I'm sending a zero length formatting message, - * which is strange, but in fact what is intended here. */ + /* this will send alive messages on e.g. GDB remote protocol. */ usleep(500*1000); - USER_N(""); + USER_N("%s", ""); /* avoid warning about zero length formatting message*/ goto again; } } diff --git a/src/target/xscale.c b/src/target/xscale.c index 30b25cb7..322df762 100644 --- a/src/target/xscale.c +++ b/src/target/xscale.c @@ -380,7 +380,7 @@ int xscale_receive(target_t *target, u32 *buffer, int num_words) jtag_add_end_state(TAP_RTI); xscale_jtag_set_instr(xscale->jtag_info.chain_pos, xscale->jtag_info.dbgtx); - jtag_add_runtest(1, -1); + jtag_add_runtest(1, -1); /* ensures that we're in the TAP_RTI state as the above could be a no-op */ /* repeat until all words have been collected */ int attempts=0;