mirror of
https://gitlab.freedesktop.org/dbus/dbus.git
synced 2025-12-20 22:00:09 +01:00
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:
parent
006c5750b3
commit
bc02680c69
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue