systemd/coccinelle/empty-or-root.cocci
2021-12-20 22:20:52 +01:00

12 lines
204 B
Plaintext

/* SPDX-License-Identifier: LGPL-2.1-or-later */
@@
expression s;
@@
- (isempty(s) || path_equal(s, "/"))
+ empty_or_root(s)
@@
expression s;
@@
- (!isempty(s) && !path_equal(s, "/"))
+ !empty_or_root(s)