From: David Sommerseth Date: Wed, 16 Nov 2016 20:18:44 +0000 (+0100) Subject: Remove unused variable in argv_printf_arglist() X-Git-Tag: v2.4_beta1~1 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=95bcf135f5aff0a3dc3f9208628fd18b8f2ee326;p=thirdparty%2Fopenvpn.git Remove unused variable in argv_printf_arglist() Signed-off-by: David Sommerseth Acked-by: Gert Doering Message-Id: <1479327524-25415-1-git-send-email-davids@openvpn.net> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg13110.html Signed-off-by: Gert Doering --- diff --git a/src/openvpn/argv.c b/src/openvpn/argv.c index f8287b794..596e59c93 100644 --- a/src/openvpn/argv.c +++ b/src/openvpn/argv.c @@ -252,7 +252,6 @@ argv_printf_arglist (struct argv *a, const char *format, va_list arglist) char *s1 = va_arg (arglist, char *); char *s2 = va_arg (arglist, char *); char *combined; - char *cmd_name; if (!s1) s1 = ""; if (!s2) s2 = "";