Skip to content

Commit

Permalink
rtos/rtos: Remove 'ERROR: ' prefix in error log
Browse files Browse the repository at this point in the history
Remove the prefix since it is redundant.

Change-Id: Ib064d1031f5ad14ed7711c09bb5f5254d0054d59
Signed-off-by: Marc Schink <[email protected]>
Reviewed-on: https://review.openocd.org/c/openocd/+/8633
Reviewed-by: Antonio Borneo <[email protected]>
Tested-by: jenkins
  • Loading branch information
zapb-0 authored and borneoa committed Dec 22, 2024
1 parent 3be1bee commit 1f2db5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rtos/rtos.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit 1f2db5d

Please sign in to comment.