Skip to content

Commit 0df93f0

Browse files
committed
preempt_sched: Indent
1 parent 5cb5cb7 commit 0df93f0

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

preempt_sched/task_sched.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -179,8 +179,10 @@ static void timer_handler(int signo, siginfo_t *info, ucontext_t *ctx)
179179

180180
static void timer_init(void)
181181
{
182-
struct sigaction sa = {.sa_handler = (void (*)(int)) timer_handler,
183-
.sa_flags = SA_SIGINFO};
182+
struct sigaction sa = {
183+
.sa_handler = (void (*)(int)) timer_handler,
184+
.sa_flags = SA_SIGINFO,
185+
};
184186
sigfillset(&sa.sa_mask);
185187
sigaction(SIGALRM, &sa, NULL);
186188
}

0 commit comments

Comments
 (0)