From 4a5c9a4965eff5aa678ccc7d1f50da714238b77a Mon Sep 17 00:00:00 2001 From: Freddie Chopin Date: Sun, 27 Jan 2013 17:08:23 +0100 Subject: [PATCH 1/1] rtos: fix error message MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Probably a copy&paste error or remainings of some older version. Change-Id: Ifb81a9a1fe8242f3b114cd0686dd264fbaad4920 Signed-off-by: Freddie Chopin Reviewed-on: http://openocd.zylin.com/1123 Tested-by: jenkins Reviewed-by: Øyvind Harboe --- src/rtos/rtos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rtos/rtos.c b/src/rtos/rtos.c index ddeb74f8ec..dff36502eb 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 -- 2.30.2