Merge pull request #969 from aap-sc/aap-sc/final_november_2023_upstream_sync_fixup
fix erroneously-resolved merge conflict
This commit is contained in:
commit
d4c5d26570
|
@ -623,7 +623,7 @@ int watchpoint_remove(struct target *target, target_addr_t address)
|
||||||
num_found_watchpoints++;
|
num_found_watchpoints++;
|
||||||
|
|
||||||
if (status != ERROR_OK) {
|
if (status != ERROR_OK) {
|
||||||
LOG_TARGET_ERROR(curr, "failed to remove watchpoint at address" TARGET_ADDR_FMT, address);
|
LOG_TARGET_ERROR(curr, "failed to remove watchpoint at address " TARGET_ADDR_FMT, address);
|
||||||
retval = status;
|
retval = status;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -635,7 +635,7 @@ int watchpoint_remove(struct target *target, target_addr_t address)
|
||||||
num_found_watchpoints++;
|
num_found_watchpoints++;
|
||||||
|
|
||||||
if (retval != ERROR_OK)
|
if (retval != ERROR_OK)
|
||||||
LOG_TARGET_ERROR(target, "failed to remove watchpoint at address" TARGET_ADDR_FMT, address);
|
LOG_TARGET_ERROR(target, "failed to remove watchpoint at address " TARGET_ADDR_FMT, address);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue