]> git.proxmox.com Git - qemu.git/commitdiff
qga: Fix two format strings for MinGW
authorStefan Weil <sw@weilnetz.de>
Mon, 25 Nov 2013 19:54:17 +0000 (20:54 +0100)
committerAnthony Liguori <aliguori@amazon.com>
Tue, 26 Nov 2013 04:35:28 +0000 (20:35 -0800)
Both code locations cause a compiler warning. Using "%s" instead of "%lu"
would result in a program crash if the wrong code were executed.

Signed-off-by: Stefan Weil <sw@weilnetz.de>
Message-id: 1385409257-2522-1-git-send-email-sw@weilnetz.de
Signed-off-by: Anthony Liguori <aliguori@amazon.com>
qga/commands-win32.c

index 7a37f5cadd0268ed1c939aef116cf29c526a70a3..a6a0af264bbb948e9eeb1b38ccc9e947daafbc64 100644 (file)
@@ -110,7 +110,7 @@ void qmp_guest_shutdown(bool has_mode, const char *mode, Error **err)
     }
 
     if (!ExitWindowsEx(shutdown_flag, SHTDN_REASON_FLAG_PLANNED)) {
-        slog("guest-shutdown failed: %d", GetLastError());
+        slog("guest-shutdown failed: %lu", GetLastError());
         error_set(err, QERR_UNDEFINED_ERROR);
     }
 }
@@ -301,7 +301,7 @@ static DWORD WINAPI do_suspend(LPVOID opaque)
     DWORD ret = 0;
 
     if (!SetSuspendState(*mode == GUEST_SUSPEND_MODE_DISK, TRUE, TRUE)) {
-        slog("failed to suspend guest, %s", GetLastError());
+        slog("failed to suspend guest, %lu", GetLastError());
         ret = -1;
     }
     g_free(mode);