summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--sent.c2
-rw-r--r--util.c2
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);
}