1:255.16-alt1
[systemd_ALT.git] / coccinelle / empty-or-root.cocci
blobd36f0c8b1bf6352a3cf897da141e3cffa06eeb2b
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)