ui/vnc : remove 'struct' of 'typedef struct'

Signed-off-by: Chih-Min Chao <cmchao@gmail.com>
Reviewed-by: Gerd Hoffmann <kraxel@redhat.com>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
Chih-Min Chao 2015-04-09 02:04:12 +08:00 committed by Michael Tokarev
parent 494cb81741
commit 4769a881cb
4 changed files with 10 additions and 10 deletions

View file

@ -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);