diff options
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | dbus/dbus-sysdeps-win.c | 4 |
2 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +2007-05-14 Ralf Habacker <ralf.habacker@freenet.de> + + * dbus/dbus-sysdeps-win.c (_dbus_printf_string_upper_bound): + compile fix for MS Platform SDK 6 + patch from Michael Luschas <mluschas@gmail.com> + 2007-05-10 John (J5) Palmieri <johnp@redhat.com> * dbus-1.pc.in: add daemondir to pc file diff --git a/dbus/dbus-sysdeps-win.c b/dbus/dbus-sysdeps-win.c index 08ac6a0f..3f56323c 100644 --- a/dbus/dbus-sysdeps-win.c +++ b/dbus/dbus-sysdeps-win.c @@ -1609,12 +1609,12 @@ int _dbus_printf_string_upper_bound (const char *format, */ char p[1024]; int len; - len = vsnprintf (p, sizeof(p)-1, format, args); + len = _vsnprintf (p, sizeof(p)-1, format, args); if (len == -1) // try again { char *p; p = malloc (strlen(format)*3); - len = vsnprintf (p, sizeof(p)-1, format, args); + len = _vsnprintf (p, sizeof(p)-1, format, args); free(p); } return len; |