repo.or.cz
/
systemd_ALT.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
1:255.13-alt1
[systemd_ALT.git]
/
coccinelle
/
xsprintf.cocci
blob
3b38090652e798edbf9f51c9e73d1676ec2548f8
1
/* SPDX-License-Identifier: LGPL-2.1-or-later */
2
@@
3
position p : script:python() { not p[0].file.startswith("man/") };
4
expression e, fmt;
5
expression list vaargs;
6
@@
7
- snprintf@p(e, sizeof(e), fmt, vaargs);
8
+ xsprintf(e, fmt, vaargs);