mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00
Avoid returning void
It's silly and non-conforming to standards to return void, don't do it. Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
This commit is contained in:
parent
16fd921bd3
commit
0ed8b6f67f
12 changed files with 46 additions and 28 deletions
2
ui/vnc.c
2
ui/vnc.c
|
@ -3089,5 +3089,5 @@ void vnc_display_add_client(DisplayState *ds, int csock, int skipauth)
|
|||
{
|
||||
VncDisplay *vs = ds ? (VncDisplay *)ds->opaque : vnc_display;
|
||||
|
||||
return vnc_connect(vs, csock, skipauth);
|
||||
vnc_connect(vs, csock, skipauth);
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue