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:
Blue Swirl 2012-07-08 06:56:53 +00:00
parent 16fd921bd3
commit 0ed8b6f67f
12 changed files with 46 additions and 28 deletions

View file

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