summaryrefslogtreecommitdiff
path: root/vnc.c
diff options
context:
space:
mode:
authorStefan Weil <weil@mail.berlios.de>2009-06-13 13:05:27 +0200
committerBlue Swirl <blauwirbel@gmail.com>2009-06-13 14:22:03 +0300
commit705032644fb37a516e5072136c1a891d12e6c90e (patch)
treec7f63f056610b73baff5a5ac832b5f6958e5cc12 /vnc.c
parentc5b76b381081680633e2e0a91216507430409fb2 (diff)
downloadqemu-705032644fb37a516e5072136c1a891d12e6c90e.tar.gz
Win32: Don't remove const attribute in type casts.
Type casts removing the const attribute are bad because they hide the fact that the argument remains const. They also result in a compiler warning (at least with MS-C). Signed-off-by: Stefan Weil <weil@mail.berlios.de>
Diffstat (limited to 'vnc.c')
-rw-r--r--vnc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/vnc.c b/vnc.c
index 109c2f34e3..e1ca9f8c75 100644
--- a/vnc.c
+++ b/vnc.c
@@ -961,7 +961,7 @@ long vnc_client_write_buf(VncState *vs, const uint8_t *data, size_t datalen)
}
} else
#endif /* CONFIG_VNC_TLS */
- ret = send(vs->csock, (void *)data, datalen, 0);
+ ret = send(vs->csock, (const void *)data, datalen, 0);
VNC_DEBUG("Wrote wire %p %zd -> %ld\n", data, datalen, ret);
return vnc_client_io_error(vs, ret, socket_error());
}