t* My version of sent
URI git clone git://git.codevoid.de/sent-sdk.git
DIR Log
DIR Files
DIR Refs
DIR README
DIR LICENSE
---
DIR commit 3ce84e71700ba35818c7a83630994d765e77599d
DIR parent 0dc8cb9dabb9630681c5cb44206e694e5ebe8514
URI Author: Markus Teich <markus.teich@stusta.mhn.de>
Date: Sat, 7 Nov 2015 23:52:35 +0100
don't use EXIT_… cpp defines
Diffstat:
M sent.c | 2 +-
M util.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
---
DIR diff --git a/sent.c b/sent.c
t@@ -622,5 +622,5 @@ int main(int argc, char *argv[])
run();
cleanup();
- return EXIT_SUCCESS;
+ return 0;
}
DIR diff --git a/util.c b/util.c
t@@ -12,6 +12,6 @@ die(const char *errstr, ...) {
va_start(ap, errstr);
vfprintf(stderr, errstr, ap);
va_end(ap);
- exit(EXIT_FAILURE);
+ exit(1);
}