diff options
author | Austin English <austinenglish@gmail.com> | 2018-10-19 14:57:09 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gmail.com> | 2018-11-27 21:22:29 -0500 |
commit | 28b73fc524096d5b2205fea25943410725d6227f (patch) | |
tree | c6cb79b832284d82c0e77a53b311832372275f6a /src | |
parent | 7a00c63420f81797b3e0cc402f756b63fe06f7d4 (diff) |
src/rc/openrc-shutdown.c: fix style
Diffstat (limited to 'src')
-rw-r--r-- | src/rc/openrc-shutdown.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |