Commit 93e26234 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Win32: useless variable

parent 4644b706
......@@ -235,10 +235,9 @@ void vlc_vaLog (vlc_object_t *obj, int type, const char *module,
va_end (ap);
#ifdef WIN32
va_list dol;
va_copy (dol, args);
Win32DebugOutputMsg (&priv->i_verbose, type, &msg, format, dol);
va_end (dol);
va_copy (ap, args);
Win32DebugOutputMsg (&priv->i_verbose, type, &msg, format, ap);
va_end (ap);
#endif
vlc_rwlock_rdlock (&msg_lock);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment