From 4769a881cbe1130e7ba4650471ef37e2cf998a9c Mon Sep 17 00:00:00 2001 From: Chih-Min Chao Date: Thu, 9 Apr 2015 02:04:12 +0800 Subject: ui/vnc : remove 'struct' of 'typedef struct' Signed-off-by: Chih-Min Chao Reviewed-by: Gerd Hoffmann Signed-off-by: Michael Tokarev --- ui/vnc-auth-vencrypt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'ui/vnc-auth-vencrypt.c') diff --git a/ui/vnc-auth-vencrypt.c b/ui/vnc-auth-vencrypt.c index 65f1afae46..03ea48a69c 100644 --- a/ui/vnc-auth-vencrypt.c +++ b/ui/vnc-auth-vencrypt.c @@ -65,7 +65,7 @@ static void start_auth_vencrypt_subauth(VncState *vs) static void vnc_tls_handshake_io(void *opaque); -static int vnc_start_vencrypt_handshake(struct VncState *vs) +static int vnc_start_vencrypt_handshake(VncState *vs) { int ret; @@ -103,7 +103,7 @@ static int vnc_start_vencrypt_handshake(struct VncState *vs) static void vnc_tls_handshake_io(void *opaque) { - struct VncState *vs = (struct VncState *)opaque; + VncState *vs = (VncState *)opaque; VNC_DEBUG("Handshake IO continue\n"); vnc_start_vencrypt_handshake(vs); -- cgit 1.4.1