jtag: fix cmd scan_chain expected_ids bug

This fixes scan_chain to correctly print all the expected_ids.

Change-Id: I93738980d85e0fe369d40c58b19339424d37ec34
Signed-off-by: Spencer Oliver <spen@spen-soft.co.uk>
Reviewed-on: http://openocd.zylin.com/474
Tested-by: jenkins
Reviewed-by: Andreas Fritiofson <andreas.fritiofson@gmail.com>
__archive__
Spencer Oliver 2012-02-21 10:16:27 +00:00 committed by Andreas Fritiofson
parent 94db77a0e6
commit d431af34fe
1 changed files with 1 additions and 1 deletions

View File

@ -957,7 +957,7 @@ COMMAND_HANDLER(handle_scan_chain_command)
for (ii = 1; ii < tap->expected_ids_cnt; ii++) {
snprintf(expected_id, sizeof expected_id, "0x%08x",
(unsigned) tap->expected_ids[1]);
(unsigned) tap->expected_ids[ii]);
if (tap->ignore_version)
expected_id[2] = '*';