summaryrefslogtreecommitdiff
path: root/src/basic/strv.h
diff options
context:
space:
mode:
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-11-21 20:06:55 +0100
committerZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>2022-11-21 20:08:50 +0100
commit400102ec91aa3404848a04f49a43d49e1a181708 (patch)
tree45ab0dba9f926dbfe21c28f98f6a01dd1484dc19 /src/basic/strv.h
parent6457ce15be84cf3c304d1ba47b89bacc2f60bf6e (diff)
downloadsystemd-400102ec91aa3404848a04f49a43d49e1a181708.tar.gz
basic/strv: check printf arguments to strv_extendf()
The second argument to _printf_() specifies where the arguments start. We need to use 0 in two cases: when the args in a va_list and can't be checked, and with journald logging functions which accept multiple format strings with multiple argument sets, which the _printf_ checker does not understand. But strv_extendf() can be checked.
Diffstat (limited to 'src/basic/strv.h')
-rw-r--r--src/basic/strv.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/strv.h b/src/basic/strv.h
index 87a7038a54..f82c76589d 100644
--- a/src/basic/strv.h
+++ b/src/basic/strv.h
@@ -45,7 +45,7 @@ static inline int strv_extend(char ***l, const char *value) {
return strv_extend_with_size(l, NULL, value);
}
-int strv_extendf(char ***l, const char *format, ...) _printf_(2,0);
+int strv_extendf(char ***l, const char *format, ...) _printf_(2,3);
int strv_extend_front(char ***l, const char *value);
int strv_push_with_size(char ***l, size_t *n, char *value);