breakpoints: Add missing space in error message

A space after the format specifier was missing.

Change-Id: Ib67eb0fb0d6e05d765206d30d5e4a74cb41bb47b
Signed-off-by: Andreas Färber <afaerber@suse.de>
Reviewed-on: http://openocd.zylin.com/3715
Tested-by: jenkins
Reviewed-by: Tomas Vanek <vanekt@fbl.cz>
This commit is contained in:
Andreas Färber 2016-08-21 22:12:52 +02:00 committed by Andreas Fritiofson
parent da74594150
commit 5fba5068b7

View File

@ -403,7 +403,7 @@ int watchpoint_add(struct target *target, uint32_t address, uint32_t length,
|| watchpoint->mask != mask
|| watchpoint->rw != rw) {
LOG_ERROR("address 0x%8.8" PRIx32
"already has watchpoint %d",
" already has watchpoint %d",
address, watchpoint->unique_id);
return ERROR_FAIL;
}