]>
git.ipfire.org Git - thirdparty/systemd.git/blame - coccinelle/exit-0.cocci
Commit | Line | Data |
a45d7127 LP |
1 | @@ |
2 | @@ |
3 | - exit(0); |
4 | + exit(EXIT_SUCCESS); |
5 | @@ |
6 | @@ |
7 | - _exit(0); |
8 | + _exit(EXIT_SUCCESS); |
9 | @@ |
10 | @@ |
11 | - exit(1); |
12 | + exit(EXIT_FAILURE); |
13 | @@ |
14 | @@ |
15 | - _exit(1); |
16 | + _exit(EXIT_FAILURE); |