rtos: fix error message
Probably a copy&paste error or remainings of some older version. Change-Id: Ifb81a9a1fe8242f3b114cd0686dd264fbaad4920 Signed-off-by: Freddie Chopin <freddie.chopin@gmail.com> Reviewed-on: http://openocd.zylin.com/1123 Tested-by: jenkins Reviewed-by: Øyvind Harboe <oyvindharboe@gmail.com>
This commit is contained in:
parent
08fc741733
commit
4a5c9a4965
|
@ -440,7 +440,7 @@ int rtos_generic_stack_read(struct target *target,
|
|||
address -= stacking->stack_registers_size;
|
||||
retval = target_read_buffer(target, address, stacking->stack_registers_size, stack_data);
|
||||
if (retval != ERROR_OK) {
|
||||
LOG_ERROR("Error reading stack frame from FreeRTOS thread");
|
||||
LOG_ERROR("Error reading stack frame from thread");
|
||||
return retval;
|
||||
}
|
||||
#if 0
|
||||
|
|
Loading…
Reference in New Issue