repo.or.cz
/
systemd_ALT.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
1:255.16-alt1
[systemd_ALT.git]
/
coccinelle
/
exit-0.cocci
blob
ff3d965a9d07afc7df30e346305cd8b51bab13a2
1
/* SPDX-License-Identifier: LGPL-2.1-or-later */
2
@@
3
@@
4
- exit(0);
5
+ exit(EXIT_SUCCESS);
6
@@
7
@@
8
- _exit(0);
9
+ _exit(EXIT_SUCCESS);
10
@@
11
@@
12
- exit(1);
13
+ exit(EXIT_FAILURE);
14
@@
15
@@
16
- _exit(1);
17
+ _exit(EXIT_FAILURE);