This is an automated email from Gerrit. Spencer Oliver ([email protected]) just uploaded a new patch set to Gerrit, which you can find at http://openocd.zylin.com/791
-- gerrit commit 185a59f9940f2fd881b8bb3f84ccfa3d3e53edb3 Author: Spencer Oliver <[email protected]> Date: Thu Aug 23 15:23:54 2012 +0100 stlink: stlink_interface_init_target use hex prefix Change-Id: I782da74687bcf111c1f04c53b2c1120d6a034441 Signed-off-by: Spencer Oliver <[email protected]> diff --git a/src/jtag/stlink/stlink_interface.c b/src/jtag/stlink/stlink_interface.c index 379e68d..c06d86c 100644 --- a/src/jtag/stlink/stlink_interface.c +++ b/src/jtag/stlink/stlink_interface.c @@ -75,9 +75,8 @@ int stlink_interface_init_target(struct target *t) } if (found == 0) { - LOG_ERROR - ("stlink_interface_init_target: target not found: idcode: %x ", - t->tap->idcode); + LOG_ERROR("stlink_interface_init_target: target not found: idcode: 0x%08x", + t->tap->idcode); return ERROR_FAIL; } -- ------------------------------------------------------------------------------ Live Security Virtual Conference Exclusive live event will cover all the ways today's security and threat landscape has changed and how IT managers can respond. Discussions will include endpoint security, mobile security and the latest in malware threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/ _______________________________________________ OpenOCD-devel mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openocd-devel
