summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2015-10-11 20:17:50 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2015-10-11 20:17:50 +0000
commit45f71ffce4de585efba855a1f33f1565ba39ad46 (patch)
tree4f1916ed34d6f11764ce77fa0c41fed8d3f56371
parent525455cc814944a27b4a02645008039fdb9f099c (diff)
Don't return errno from main()
ok beck@ doug@ deraadt@ tedu@
-rw-r--r--bin/sleep/sleep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/sleep/sleep.c b/bin/sleep/sleep.c
index fe49ccff47e..d25ad44749f 100644
--- a/bin/sleep/sleep.c
+++ b/bin/sleep/sleep.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sleep.c,v 1.23 2015/10/09 01:37:06 deraadt Exp $ */
+/* $OpenBSD: sleep.c,v 1.24 2015/10/11 20:17:49 guenther Exp $ */
/* $NetBSD: sleep.c,v 1.8 1995/03/21 09:11:11 cgd Exp $ */
/*
@@ -107,7 +107,7 @@ main(int argc, char *argv[])
if ((secs > 0) || (nsecs > 0))
if (nanosleep(&rqtp, NULL))
- return (errno);
+ err(1, NULL);
return (0);
}