aboutsummaryrefslogtreecommitdiff
path: root/src/rtos/rtos.c
diff options
context:
space:
mode:
authorFreddie Chopin <freddie.chopin@gmail.com>2013-01-27 17:08:23 +0100
committerØyvind Harboe <oyvindharboe@gmail.com>2013-01-27 18:44:05 +0000
commit4a5c9a4965eff5aa678ccc7d1f50da714238b77a (patch)
treebf089108bb19d48c6fad2900a247cc5076394582 /src/rtos/rtos.c
parent08fc7417333dc8ba4dd4ac15776ed2e9ede504bd (diff)
downloadriscv-openocd-4a5c9a4965eff5aa678ccc7d1f50da714238b77a.zip
riscv-openocd-4a5c9a4965eff5aa678ccc7d1f50da714238b77a.tar.gz
riscv-openocd-4a5c9a4965eff5aa678ccc7d1f50da714238b77a.tar.bz2
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>
Diffstat (limited to 'src/rtos/rtos.c')
-rw-r--r--src/rtos/rtos.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rtos/rtos.c b/src/rtos/rtos.c
index ddeb74f..dff3650 100644
--- a/src/rtos/rtos.c
+++ b/src/rtos/rtos.c
@@ -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