summaryrefslogtreecommitdiff
path: root/src/sleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/sleep.c')
-rw-r--r--src/sleep.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/sleep.c b/src/sleep.c
index acee3bbfe..b9bbe1a36 100644
--- a/src/sleep.c
+++ b/src/sleep.c
@@ -21,6 +21,7 @@
#include "system.h"
#include "c-strtod.h"
+#include "die.h"
#include "error.h"
#include "long-options.h"
#include "quote.h"
@@ -143,7 +144,7 @@ main (int argc, char **argv)
usage (EXIT_FAILURE);
if (xnanosleep (seconds))
- error (EXIT_FAILURE, errno, _("cannot read realtime clock"));
+ die (EXIT_FAILURE, errno, _("cannot read realtime clock"));
return EXIT_SUCCESS;
}