aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormaximilian attems <max@stro.at>2011-07-07 11:18:14 +0200
committermaximilian attems <max@stro.at>2011-07-07 11:18:14 +0200
commit3291a6bbe4e21dba2941ace8e203bea2c25ad3b6 (patch)
tree1cefbf4baf539c624a234ab465f22bf7da9599b9
parent774aa24ad70de9b4897131742069b68f1ccb6a65 (diff)
downloadklibc-3291a6bbe4e21dba2941ace8e203bea2c25ad3b6.tar.gz
[klibc] sleep: have argument on next line
fixes: ERROR: trailing statements should be on next line Signed-off-by: maximilian attems <max@stro.at>
-rw-r--r--usr/utils/sleep.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr/utils/sleep.c b/usr/utils/sleep.c
index 62b223844953e..991cdbe3b99ac 100644
--- a/usr/utils/sleep.c
+++ b/usr/utils/sleep.c
@@ -15,7 +15,8 @@ int main(int argc, char *argv[])
if (*p)
goto err;
- while (nanosleep(&ts, &ts) == -1 && errno == EINTR) ;
+ while (nanosleep(&ts, &ts) == -1 && errno == EINTR)
+ ;
return 0;