---
 st.c | 2 +-
 x.c  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/st.c b/st.c
index aec58ce..72f447a 100644
--- a/st.c
+++ b/st.c
@@ -678,7 +678,7 @@ die(const char *errstr, ...)
        va_start(ap, errstr);
        vfprintf(stderr, errstr, ap);
        va_end(ap);
-       exit(1);
+       exit(EXIT_FAILURE);
 }
 
 void
diff --git a/x.c b/x.c
index b1ba14a..f886109 100644
--- a/x.c
+++ b/x.c
@@ -1956,5 +1956,5 @@ run:
        selinit();
        run();
 
-       return 0;
+       return EXIT_SUCCESS;
 }
-- 
2.20.1


Reply via email to