chiark / gitweb /
tree-wide: remove useless NULLs from strjoina
[elogind.git] / coccinelle / strjoina.cocci
1 @@
2 expression n, m;
3 expression list s;
4 @@
5 - n = strjoina(m, s, NULL);
6 + n = strjoina(m, s);