about summary refs log tree commit diff
path: root/support/delayed_exit.c
diff options
context:
space:
mode:
Diffstat (limited to 'support/delayed_exit.c')
-rw-r--r--support/delayed_exit.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/support/delayed_exit.c b/support/delayed_exit.c
index d5b2e10927..1384f5cc34 100644
--- a/support/delayed_exit.c
+++ b/support/delayed_exit.c
@@ -22,6 +22,7 @@
 #include <stdint.h>
 #include <stdio.h>
 #include <stdlib.h>
+#include <support/check.h>
 #include <time.h>
 
 static void *
@@ -31,10 +32,7 @@ delayed_exit_thread (void *seconds_as_ptr)
   struct timespec delay = { seconds, 0 };
   struct timespec remaining = { 0 };
   if (nanosleep (&delay, &remaining) != 0)
-    {
-      printf ("error: nanosleep: %m\n");
-      exit (1);
-    }
+    FAIL_EXIT1 ("nanosleep: %m");
   /* Exit the process sucessfully.  */
   exit (0);
   return NULL;