mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 17:51:22 +03:00
d054f0a4d4
Also add a coccinelle receipt to help with such transitions.
7 lines
116 B
Plaintext
7 lines
116 B
Plaintext
@@
|
|
expression e, fmt;
|
|
expression list vaargs;
|
|
@@
|
|
- snprintf(e, sizeof(e), fmt, vaargs);
|
|
+ xsprintf(e, fmt, vaargs);
|