]> git.ipfire.org Git - thirdparty/systemd.git/blame - coccinelle/equals-null.cocci
udev: fix codesonar warnings
[thirdparty/systemd.git] / coccinelle / equals-null.cocci
CommitLineData
234519ae
LP
1@@
2expression e;
3statement s;
4@@
5- if (e == NULL)
6+ if (!e)
7s
8@@
9expression e;
10statement s;
11@@
12- if (e != NULL)
13+ if (e)
14s