]> git.ipfire.org Git - thirdparty/systemd.git/blob - coccinelle/strjoin.cocci
meson: Use configure_file when version-tag is specified
[thirdparty/systemd.git] / coccinelle / strjoin.cocci
1 @@
2 position p : script:python() { p[0].current_element != "test_strjoin" };
3 expression t;
4 expression list args;
5 @@
6 (
7 - strjoin@p(args, NULL);
8 + strjoin(args);
9 |
10 - t = strjoin@p(args, NULL);
11 + t = strjoin(args);
12 |
13 - return strjoin@p(args, NULL);
14 + return strjoin(args);
15 )