From cdb22ed6af4ddacebc01044ccb34fd87cc0550b3 Mon Sep 17 00:00:00 2001 From: David Sidrane Date: Sun, 8 Mar 2020 05:51:34 -0700 Subject: [PATCH] task_onexit.c:Fix style errors. --- sched/task/task_onexit.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/sched/task/task_onexit.c b/sched/task/task_onexit.c index 9ce0c93157b..c3977ddb078 100644 --- a/sched/task/task_onexit.c +++ b/sched/task/task_onexit.c @@ -105,10 +105,10 @@ int on_exit(CODE void (*func)(int, FAR void *), FAR void *arg) { sched_lock(); - /* Search for the first available slot. on_exit() functions are registered - * from lower to higher array indices; they must be called in the reverse - * order of registration when task exists, i.e., from higher to lower - * indices. + /* Search for the first available slot. on_exit() functions are + * registered from lower to higher array indices; they must be called + * in the reverse order of registration when task exists, i.e., + * from higher to lower indices. */ for (index = 0; index < CONFIG_SCHED_ONEXIT_MAX; index++)