X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=blobdiff_plain;f=src%2Ftarget%2Ftarget.c;h=cc8d500f0ccbc1c889da65c1079072f7c03f56df;hp=85c228a0c97308b97c35d8df5081f11814515f8d;hb=ab3bdfb2cb7b0c16800195951e4ee549cf8e86a5;hpb=ecab0cfe25600ad13c174b78a637515943cc870a diff --git a/src/target/target.c b/src/target/target.c index 85c228a0c9..cc8d500f0c 100644 --- a/src/target/target.c +++ b/src/target/target.c @@ -2801,13 +2801,15 @@ COMMAND_HANDLER(handle_wp_command) while (watchpoint) { - command_print(cmd_ctx, - "address: 0x%8.8" PRIx32 ", len: 0x%8.8x, r/w/a: %i, value: 0x%8.8" PRIx32 ", mask: 0x%8.8" PRIx32 "", - watchpoint->address, - watchpoint->length, - (int)(watchpoint->rw), - watchpoint->value, - watchpoint->mask); + command_print(cmd_ctx, "address: 0x%8.8" PRIx32 + ", len: 0x%8.8" PRIx32 + ", r/w/a: %i, value: 0x%8.8" PRIx32 + ", mask: 0x%8.8" PRIx32, + watchpoint->address, + watchpoint->length, + (int)watchpoint->rw, + watchpoint->value, + watchpoint->mask); watchpoint = watchpoint->next; } return ERROR_OK;