systemd/coccinelle/strjoina.cocci

9 lines
217 B
Plaintext
Raw Normal View History

2023-04-12 17:00:04 +08:00
/* SPDX-License-Identifier: LGPL-2.1-or-later */
2022-05-14 02:56:24 +08:00
@@
2023-04-12 17:00:04 +08:00
position p : script:python() { p[0].current_element != "test_strjoina" };
2022-05-14 02:56:24 +08:00
expression n, m;
expression list s;
@@
2023-04-12 17:00:04 +08:00
- n = strjoina@p(m, s, NULL);
2022-05-14 02:56:24 +08:00
+ n = strjoina(m, s);