Fix typo in string

This commit is contained in:
Xavier Del Campo Romero 2020-11-03 22:39:27 +01:00
parent 2dde7bcb26
commit a1b716ffb0
1 changed files with 1 additions and 1 deletions

View File

@ -291,7 +291,7 @@ int dbg_sys_del_breakpoint(address addr)
msg.type = MSG_TYPE_REMOVE_BREAKPOINT;
if (mq_send(out_queue, (const char *)&msg, sizeof msg, 0)) {
perror("dbg_sys_breakpoint(): mq_send()");
perror("dbg_sys_del_breakpoint(): mq_send()");
}
return wait_ack(&msg);