From: Alon Bar-Lev Date: Wed, 29 Feb 2012 20:11:35 +0000 (+0200) Subject: cleanup: win32.c: wrong printf format X-Git-Tag: v2.3_alpha2~130 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b2c1643eabfc27c662510401c1841ca5fe721593;p=thirdparty%2Fopenvpn.git cleanup: win32.c: wrong printf format Signed-off-by: Alon Bar-Lev Acked-by: Adriaan de Jong Acked-by: David Sommerseth Signed-off-by: David Sommerseth --- diff --git a/win32.c b/win32.c index 2ba97fcf3..acf5ebc19 100644 --- a/win32.c +++ b/win32.c @@ -1012,12 +1012,12 @@ openvpn_execve (const struct argv *a, const struct env_set *es, const unsigned i if (GetExitCodeProcess (proc_info.hProcess, &exit_status)) ret = (int)exit_status; else - msg (M_WARN|M_ERRNO, "openvpn_execve: GetExitCodeProcess %s failed", cmd); + msg (M_WARN|M_ERRNO, "openvpn_execve: GetExitCodeProcess %S failed", cmd); CloseHandle (proc_info.hProcess); } else { - msg (M_WARN|M_ERRNO, "openvpn_execve: CreateProcess %s failed", cmd); + msg (M_WARN|M_ERRNO, "openvpn_execve: CreateProcess %S failed", cmd); } free (env); gc_free (&gc);