Fixed compiler warning on windows.

https://bugs.freedesktop.org/show_bug.cgi?id=61874
Reviewed-by: Simon McVittie <simon.mcvittie@collabora.co.uk>
This commit is contained in:
Ralf Habacker 2013-08-19 21:29:18 +02:00
parent 006c5750b3
commit bc02680c69

View file

@ -159,8 +159,8 @@ main (int argc, char **argv)
if (result == 0)
{
if (verbose)
fprintf (stderr, "Could not start " DBUS_DAEMON_NAME ". error=%d\n",
GetLastError ());
fprintf (stderr, "Could not start " DBUS_DAEMON_NAME ". error=%u\n",
(unsigned)GetLastError ());
return 4;
}