summaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorDong Xu Wang2011-11-29 09:52:38 +0100
committerStefan Hajnoczi2011-12-06 10:56:41 +0100
commit3a93113a002db694657fcf24ff0c96aef83303b8 (patch)
tree0dd0d2d6691f800325c6b193d26cd9a13fe1fe08 /ui
parentwin32: fix memory leak (diff)
downloadqemu-3a93113a002db694657fcf24ff0c96aef83303b8.tar.gz
qemu-3a93113a002db694657fcf24ff0c96aef83303b8.tar.xz
qemu-3a93113a002db694657fcf24ff0c96aef83303b8.zip
fix typo: delete redundant semicolon
Double semicolons should be single. Signed-off-by: Dong Xu Wang <wdongxu@linux.vnet.ibm.com> Signed-off-by: Stefan Hajnoczi <stefanha@linux.vnet.ibm.com>
Diffstat (limited to 'ui')
-rw-r--r--ui/vnc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/vnc.c b/ui/vnc.c
index e85ee66fb0..6767ada7d2 100644
--- a/ui/vnc.c
+++ b/ui/vnc.c
@@ -2183,7 +2183,7 @@ static int protocol_client_auth(VncState *vs, uint8_t *data, size_t len)
#ifdef CONFIG_VNC_TLS
case VNC_AUTH_VENCRYPT:
- VNC_DEBUG("Accept VeNCrypt auth\n");;
+ VNC_DEBUG("Accept VeNCrypt auth\n");
start_auth_vencrypt(vs);
break;
#endif /* CONFIG_VNC_TLS */