From: openocd-gerrit <ope...@us...> - 2024-12-22 09:56:53
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Main OpenOCD repository". The branch, master has been updated via 1f2db5d59a51262ef824a99fb6b77ce241250e47 (commit) from 3be1bee75347ab1eac835591eae3ca53a58008c5 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 1f2db5d59a51262ef824a99fb6b77ce241250e47 Author: Marc Schink <de...@za...> Date: Sat Nov 30 15:35:39 2024 +0100 rtos/rtos: Remove 'ERROR: ' prefix in error log Remove the prefix since it is redundant. Change-Id: Ib064d1031f5ad14ed7711c09bb5f5254d0054d59 Signed-off-by: Marc Schink <de...@za...> Reviewed-on: https://review.openocd.org/c/openocd/+/8633 Reviewed-by: Antonio Borneo <bor...@gm...> Tested-by: jenkins 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 */ ----------------------------------------------------------------------- Summary of changes: src/rtos/rtos.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) hooks/post-receive -- Main OpenOCD repository |