Re: [PATCH] score: Replace goto with a break

2023-02-10 Thread Joel Sherrill
Looks ok to me. On Fri, Feb 10, 2023 at 1:21 AM Sebastian Huber < sebastian.hu...@embedded-brains.de> wrote: > The goto label was directly after the loop, so we can replace the goto > with a break. > > Close #4847. > --- > cpukit/score/src/threaddispatch.c | 17 +++-- > 1 file change

[PATCH] score: Replace goto with a break

2023-02-09 Thread Sebastian Huber
The goto label was directly after the loop, so we can replace the goto with a break. Close #4847. --- cpukit/score/src/threaddispatch.c | 17 +++-- 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/cpukit/score/src/threaddispatch.c b/cpukit/score/src/threaddispatch.c ind