[Spice-devel] [spice-gtk] Remove some warnings compiling for Windows
Frediano Ziglio
fziglio at redhat.com
Mon Jun 13 11:29:52 UTC 2016
GetLastError returns a DWORD which is a "unsigned long" on Windows
so use "%lu" formatting instead of "%u".
Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
---
src/controller/test.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/controller/test.c b/src/controller/test.c
index 7c43f1b..783499c 100644
--- a/src/controller/test.c
+++ b/src/controller/test.c
@@ -49,7 +49,7 @@ void write_to_pipe (const void* data, size_t len)
#ifdef WIN32
DWORD written;
if (!WriteFile (pipe, data, len, &written, NULL) || written != len) {
- printf("Write to pipe failed %u\n", GetLastError());
+ printf("Write to pipe failed %lu\n", GetLastError());
}
#else
if (send (sock, data, len, 0) != len) {
@@ -107,7 +107,7 @@ ssize_t read_from_pipe (void* data, size_t size)
#ifdef WIN32
DWORD bytes;
if (!ReadFile (pipe, data, size, &bytes, NULL)) {
- printf ("Read from pipe failed %u\n", GetLastError());
+ printf ("Read from pipe failed %lu\n", GetLastError());
}
read = bytes;
#else
@@ -224,7 +224,7 @@ int main (int argc, char *argv[])
printf ("Creating Spice controller connection %s\n", pipe_name);
pipe = CreateFile (pipe_name, GENERIC_READ | GENERIC_WRITE, 0, NULL, OPEN_EXISTING, 0, NULL);
if (pipe == INVALID_HANDLE_VALUE) {
- printf ("Could not open pipe %u\n", GetLastError());
+ printf ("Could not open pipe %lu\n", GetLastError());
return -1;
}
#else
--
2.7.4
More information about the Spice-devel
mailing list