From 1f2db5d59a51262ef824a99fb6b77ce241250e47 Mon Sep 17 00:00:00 2001 From: Marc Schink Date: Sat, 30 Nov 2024 15:35:39 +0100 Subject: [PATCH] rtos/rtos: Remove 'ERROR: ' prefix in error log Remove the prefix since it is redundant. Change-Id: Ib064d1031f5ad14ed7711c09bb5f5254d0054d59 Signed-off-by: Marc Schink Reviewed-on: https://review.openocd.org/c/openocd/+/8633 Reviewed-by: Antonio Borneo Tested-by: jenkins --- 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 0dd538e8f..f218f6369 100644 --- a/src/rtos/rtos.c +++ b/src/rtos/rtos.c @@ -608,7 +608,7 @@ int rtos_generic_stack_read(struct target *target, int retval; if (stack_ptr == 0) { - LOG_ERROR("Error: null stack pointer in thread"); + LOG_ERROR("null stack pointer in thread"); return -5; } /* Read the stack */