diff options
author | Lennart Poettering <lennart@poettering.net> | 2017-12-22 13:24:40 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2017-12-25 11:48:21 +0100 |
commit | a45d7127e716399ea0ff27b32d5247ee877d1ab4 (patch) | |
tree | f396ece5e662b1b8a80aa8f76bc08b7057341d98 /coccinelle | |
parent | shutdown: unify shutdown.c's and async.c's sync() helper process (diff) | |
download | systemd-a45d7127e716399ea0ff27b32d5247ee877d1ab4.tar.gz systemd-a45d7127e716399ea0ff27b32d5247ee877d1ab4.tar.bz2 systemd-a45d7127e716399ea0ff27b32d5247ee877d1ab4.zip |
tree-wide: use EXIT_SUCCESS/EXIT_FAILURE in exit() where we can
Diffstat (limited to 'coccinelle')
-rw-r--r-- | coccinelle/exit-0.cocci | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/coccinelle/exit-0.cocci b/coccinelle/exit-0.cocci new file mode 100644 index 000000000..8b8160057 --- /dev/null +++ b/coccinelle/exit-0.cocci @@ -0,0 +1,16 @@ +@@ +@@ +- exit(0); ++ exit(EXIT_SUCCESS); +@@ +@@ +- _exit(0); ++ _exit(EXIT_SUCCESS); +@@ +@@ +- exit(1); ++ exit(EXIT_FAILURE); +@@ +@@ +- _exit(1); ++ _exit(EXIT_FAILURE); |