]> git.ipfire.org Git - thirdparty/qemu.git/blobdiff - util/osdep.c
iotests: Fix cleanup path in some tests
[thirdparty/qemu.git] / util / osdep.c
index f7d06050f712a154c12df07a25083611f924f63e..4829c07ff6edbb1508946ad789031f51b2cb6035 100644 (file)
@@ -82,8 +82,8 @@ static int qemu_mprotect__osdep(void *addr, size_t size, int prot)
     DWORD old_protect;
 
     if (!VirtualProtect(addr, size, prot, &old_protect)) {
-        error_report("%s: VirtualProtect failed with error code %ld",
-                     __func__, GetLastError());
+        g_autofree gchar *emsg = g_win32_error_message(GetLastError());
+        error_report("%s: VirtualProtect failed: %s", __func__, emsg);
         return -1;
     }
     return 0;