From 28b73fc524096d5b2205fea25943410725d6227f Mon Sep 17 00:00:00 2001 From: Austin English Date: Fri, 19 Oct 2018 14:57:09 -0500 Subject: [PATCH] src/rc/openrc-shutdown.c: fix style --- src/rc/openrc-shutdown.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; }