]> git.ipfire.org Git - thirdparty/systemd.git/blob - coccinelle/const-strlen.disabled
fs-util: no need for fchmod_and_chown() to access /proc/self/fd directly
[thirdparty/systemd.git] / coccinelle / const-strlen.disabled
1 @@
2 constant s;
3 @@
4 (
5 #define STRLEN
6 &
7 - sizeof(s)-1
8 + STRLEN(s)
9 )
10 @@
11 constant s;
12 @@
13 - strlen(s)
14 + STRLEN(s)