bug-mcron
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Bug-mcron] [PATCH 24/33] mcron: Use symbolic constants.


From: Mathieu Lirzin
Subject: [Bug-mcron] [PATCH 24/33] mcron: Use symbolic constants.
Date: Sun, 27 Sep 2015 23:00:35 +0200

* mcron.c (main, react_to_terminal_signal): Use EXIT_SUCCESS and
  EXIT_FAILURE macros instead of magic numbers.
---
 mcron.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/mcron.c b/mcron.c
index 015d9c9..e60d1f4 100644
--- a/mcron.c
+++ b/mcron.c
@@ -46,6 +46,7 @@
 
 #include <libguile.h>
 #include <signal.h>
+#include <stdlib.h>
 #include <string.h>
 
 /* Forward declarations.  */
@@ -59,7 +60,7 @@ main (int argc, char **argv)
   setenv ("GUILE_LOAD_PATH", GUILE_LOAD_PATH, 1);
   scm_boot_guile (argc, argv, inner_main, 0);
 
-  return 0;
+  return EXIT_SUCCESS;
 }
 
 /* The effective main function (i.e. the one that actually does some work).
@@ -101,5 +102,5 @@ void
 react_to_terminal_signal (int sig)
 {
   scm_c_eval_string ("(delete-run-file)");
-  exit (1);
+  exit (EXIT_FAILURE);
 }

reply via email to

[Prev in Thread] Current Thread [Next in Thread]