Followup Bug 19502 - Don't attempt to init va_list, not portable

This commit is contained in:
Colin Walters 2009-04-21 13:11:54 -04:00
parent 3c89788fa4
commit ce09b82ec2

View file

@ -1245,7 +1245,7 @@ _dbus_string_append_printf_valist (DBusString *str,
va_list args)
{
int len;
va_list args_copy = 0;
va_list args_copy;
DBUS_STRING_PREAMBLE (str);