]> git.ipfire.org Git - thirdparty/systemd.git/blame - coccinelle/strjoin.cocci
fs-util: no need for fchmod_and_chown() to access /proc/self/fd directly
[thirdparty/systemd.git] / coccinelle / strjoin.cocci
CommitLineData
605405c6
ZJS
1@@
2expression list args;
3@@
4- strjoin(args, NULL);
5+ strjoin(args);
6@@
7expression t;
8expression list args;
9@@
10- t = strjoin(args, NULL);
11+ t = strjoin(args);
12@@
13expression list args;
14@@
15- return strjoin(args, NULL);
16+ return strjoin(args);