From dd92faafe97dc1d1d2af38ef67cb96259dae735d Mon Sep 17 00:00:00 2001 From: David Sidrane Date: Sun, 8 Mar 2020 05:50:53 -0700 Subject: [PATCH] exit.c:Fix style errors. --- sched/task/exit.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sched/task/exit.c b/sched/task/exit.c index ef8071cc376..5c6af7c4415 100644 --- a/sched/task/exit.c +++ b/sched/task/exit.c @@ -89,7 +89,8 @@ void exit(int status) /* Perform common task termination logic. This will get called again later * through logic kicked off by _exit(). However, we need to call it before * calling _exit() in order to handle atexit() and on_exit() callbacks and - * so that we can flush buffered I/O (both of which may required suspending). + * so that we can flush buffered I/O (both of which may required + * suspending). */ nxtask_exithook(tcb, status, false);