mirror of
https://git.proxmox.com/git/systemd
synced 2026-01-05 07:17:29 +00:00
9 lines
234 B
Plaintext
9 lines
234 B
Plaintext
/* SPDX-License-Identifier: LGPL-2.1-or-later */
|
|
@@
|
|
position p : script:python() { not p[0].file.startswith("man/") };
|
|
expression e, fmt;
|
|
expression list vaargs;
|
|
@@
|
|
- snprintf@p(e, sizeof(e), fmt, vaargs);
|
|
+ xsprintf(e, fmt, vaargs);
|