chiark / gitweb /
tree-wide: htonl() is weird, let's use htobe32() instead (#3538)
[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);