Skip to content

Commit 1e58b53

Browse files
ndrs-pstnashif
authored andcommitted
style: kernel: comply with MISRA C:2012 Rule 15.6
Add missing braces to comply with MISRA C:2012 Rule 15.6 and also following Zephyr's style guideline. Signed-off-by: Pisit Sawangvonganan <pisit@ndrsolution.com>
1 parent 847a4ea commit 1e58b53

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

kernel/thread_monitor.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,9 @@ void k_thread_foreach_filter_by_cpu(unsigned int cpu, k_thread_user_cb_t user_cb
105105
SYS_PORT_TRACING_FUNC_ENTER(k_thread, foreach);
106106

107107
for (thread = _kernel.threads; thread; thread = thread->next_thread) {
108-
if (thread->base.cpu == cpu)
108+
if (thread->base.cpu == cpu) {
109109
user_cb(thread, user_data);
110+
}
110111
}
111112

112113
SYS_PORT_TRACING_FUNC_EXIT(k_thread, foreach);

0 commit comments

Comments
 (0)