use EXIT_* macros instead of numerical values
authorHelmut Grohne <helmut@subdivi.de>
Tue, 28 Jul 2009 12:19:14 +0000 (14:19 +0200)
committerHelmut Grohne <helmut@subdivi.de>
Tue, 28 Jul 2009 12:19:14 +0000 (14:19 +0200)
uzbl.c
uzblctrl.c

diff --git a/uzbl.c b/uzbl.c
index afd1cf3..ccd07e6 100644 (file)
--- a/uzbl.c
+++ b/uzbl.c
@@ -2642,7 +2642,7 @@ initialize(int argc, char *argv[]) {
 
     if (uzbl.behave.print_version) {
         printf("Commit: %s\n", COMMIT);
-        exit(0);
+        exit(EXIT_SUCCESS);
     }
 
     /* initialize hash table */
index e768b7f..2547bc7 100644 (file)
@@ -36,7 +36,7 @@ main(int argc, char* argv[]) {
 
         if ((s = socket (AF_UNIX, SOCK_STREAM, 0)) == -1) {
             perror ("socket");
-            exit (1);
+            exit (EXIT_FAILURE);
         }
 
         remote.sun_family = AF_UNIX;
@@ -45,13 +45,13 @@ main(int argc, char* argv[]) {
 
         if (connect (s, (struct sockaddr *) &remote, len) == -1) {
             perror ("connect");
-            exit (1);
+            exit (EXIT_FAILURE);
         }
 
         if ((send (s, command, strlen (command), 0) == -1) ||
             (send (s, "\n", 1, 0) == -1)) {
             perror ("send");
-            exit (1);
+            exit (EXIT_FAILURE);
         }
 
         while ((len = recv (s, &tmp, 1, 0))) {