mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
ca21d59a3f
* flag-set.cocci: perform the transformation only if the second argument is a constant * sd-journal/lookup3.c: skip the cocci completely for this file, since it's not "ours" * strjoina.cocci: skip the transformation on the "test_strjoina" test, since it intentionally tests the "incorrect" expression we're trying to transform (the same thing was already done in strjoin.cocci)
8 lines
168 B
Plaintext
8 lines
168 B
Plaintext
@@
|
|
position p : script:python() { p[0].current_element != "test_strjoina" };
|
|
expression n, m;
|
|
expression list s;
|
|
@@
|
|
- n = strjoina@p(m, s, NULL);
|
|
+ n = strjoina(m, s);
|