From 3ce84e71700ba35818c7a83630994d765e77599d Mon Sep 17 00:00:00 2001 From: Markus Teich Date: Sat, 7 Nov 2015 23:52:35 +0100 Subject: [PATCH] =?UTF-8?q?don't=20use=20EXIT=5F=E2=80=A6=20cpp=20defines?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sent.c | 2 +- util.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sent.c b/sent.c index 74412ba..1b3b8f2 100644 --- a/sent.c +++ b/sent.c @@ -622,5 +622,5 @@ int main(int argc, char *argv[]) run(); cleanup(); - return EXIT_SUCCESS; + return 0; } diff --git a/util.c b/util.c index 51acd1a..ad3da78 100644 --- a/util.c +++ b/util.c @@ -12,6 +12,6 @@ die(const char *errstr, ...) { va_start(ap, errstr); vfprintf(stderr, errstr, ap); va_end(ap); - exit(EXIT_FAILURE); + exit(1); }