From: Thomas Hindoe Paaboel Andersen Date: Sun, 27 Sep 2015 21:03:40 +0000 (+0200) Subject: sd-bus: va_start should use the last named parameter X-Git-Tag: v227~66^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=19932084d0177f482e04ab3b08ab836ccf93cc40;p=thirdparty%2Fsystemd.git sd-bus: va_start should use the last named parameter --- diff --git a/src/libsystemd/sd-bus/sd-bus.c b/src/libsystemd/sd-bus/sd-bus.c index 3310d3859d6..a23f7257fa7 100644 --- a/src/libsystemd/sd-bus/sd-bus.c +++ b/src/libsystemd/sd-bus/sd-bus.c @@ -3467,7 +3467,7 @@ _public_ int sd_bus_path_encode_many(char **out, const char *path_template, ...) path_length = strlen(path_template); - va_start(list, out); + va_start(list, path_template); for (sep = strchr(path_template, '%'); sep; sep = strchr(sep + 1, '%')) { const char *arg; char *label; @@ -3602,7 +3602,7 @@ _public_ int sd_bus_path_decode_many(const char *path, const char *path_template return 0; /* copy the labels over to the caller */ - va_start(list, path); + va_start(list, path_template); for (label_pos = labels; label_pos && *label_pos; ++label_pos) { char **arg;