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
/
empty-or-root.cocci
blob
d36f0c8b1bf6352a3cf897da141e3cffa06eeb2b
1
/* SPDX-License-Identifier: LGPL-2.1-or-later */
2
@@
3
expression s;
4
@@
5
- (isempty(s) || path_equal(s, "/"))
6
+ empty_or_root(s)
7
@@
8
expression s;
9
@@
10
- (!isempty(s) && !path_equal(s, "/"))
11
+ !empty_or_root(s)