diff -r c4f8d7695833 -r 4bee0aa5b286 util.c --- a/util.c Mon Jul 17 18:49:13 2006 +0200 +++ b/util.c Tue Jul 18 08:18:54 2006 +0200 @@ -17,7 +17,7 @@ { fprintf(stderr, "fatal: could not malloc() %d bytes\n", (int) size); - exit(1); + exit(EXIT_FAILURE); } /* extern */ @@ -37,7 +37,7 @@ va_start(ap, errstr); vfprintf(stderr, errstr, ap); va_end(ap); - exit(1); + exit(EXIT_FAILURE); } void @@ -55,7 +55,7 @@ fprintf(stderr, "dwm: execvp %s", argv[0]); perror(" failed"); } - exit (0); + exit(EXIT_FAILURE); } wait(0); }