summary refs log tree commit diff stats
path: root/qga/service-win32.c
diff options
context:
space:
mode:
authorLei Li <lilei@linux.vnet.ibm.com>2013-01-28 12:49:09 +0800
committerMichael Roth <mdroth@linux.vnet.ibm.com>2013-03-11 18:53:46 -0500
commited2cbf74446b008f9de526a50e4b06265635120c (patch)
tree2ffd7995ae6d5245dc7635b46e321d3e92658e15 /qga/service-win32.c
parentfe3cc14fd83e0c8f376d849ccd0fc3433388442d (diff)
downloadfocaccia-qemu-ed2cbf74446b008f9de526a50e4b06265635120c.tar.gz
focaccia-qemu-ed2cbf74446b008f9de526a50e4b06265635120c.zip
qga: cast to int for DWORD type
This patch fixes a compiler warning when cross-build:

qga/service-win32.c: In function 'printf_win_error':
qga/service-win32.c:32:5: warning: format '%d' expects argument of type 'int',
                          but argument 3 has type 'DWORD' [-Wformat]

Signed-off-by: Lei Li <lilei@linux.vnet.ibm.com>
Signed-off-by: Michael Roth <mdroth@linux.vnet.ibm.com>
Diffstat (limited to 'qga/service-win32.c')
-rw-r--r--qga/service-win32.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qga/service-win32.c b/qga/service-win32.c
index 09054565d3..843398a6c6 100644
--- a/qga/service-win32.c
+++ b/qga/service-win32.c
@@ -29,7 +29,7 @@ static int printf_win_error(const char *text)
         MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
         (char *)&message, 0,
         NULL);
-    n = printf("%s. (Error: %d) %s", text, err, message);
+    n = printf("%s. (Error: %d) %s", text, (int)err, message);
     LocalFree(message);
 
     return n;