mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
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:
parent
494cb81741
commit
4769a881cb
4 changed files with 10 additions and 10 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue