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:
committed by
Michael Tokarev
parent
494cb81741
commit
4769a881cb
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user