diff --git a/src/rc/openrc-shutdown.c b/src/rc/openrc-shutdown.c index 71a91255..e39f1316 100644 --- a/src/rc/openrc-shutdown.c +++ b/src/rc/openrc-shutdown.c @@ -154,7 +154,7 @@ static void sleep_no_interrupt(int seconds) duration.tv_sec = seconds; duration.tv_nsec = 0; - while(nanosleep(&duration, &remaining) < 0 && errno == EINTR) + while (nanosleep(&duration, &remaining) < 0 && errno == EINTR) duration = remaining; }