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:
parent
da74594150
commit
5fba5068b7
|
@ -403,7 +403,7 @@ int watchpoint_add(struct target *target, uint32_t address, uint32_t length,
|
||||||
|| watchpoint->mask != mask
|
|| watchpoint->mask != mask
|
||||||
|| watchpoint->rw != rw) {
|
|| watchpoint->rw != rw) {
|
||||||
LOG_ERROR("address 0x%8.8" PRIx32
|
LOG_ERROR("address 0x%8.8" PRIx32
|
||||||
"already has watchpoint %d",
|
" already has watchpoint %d",
|
||||||
address, watchpoint->unique_id);
|
address, watchpoint->unique_id);
|
||||||
return ERROR_FAIL;
|
return ERROR_FAIL;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue