spice: Add missing 'static' attribute
Signed-off-by: Stefan Weil <sw@weilnetz.de> Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
This commit is contained in:
parent
92013cf8ca
commit
51575c3fca
|
@ -158,7 +158,7 @@ static gboolean spice_char_source_dispatch(GSource *source,
|
||||||
return func(NULL, G_IO_OUT, user_data);
|
return func(NULL, G_IO_OUT, user_data);
|
||||||
}
|
}
|
||||||
|
|
||||||
GSourceFuncs SpiceCharSourceFuncs = {
|
static GSourceFuncs SpiceCharSourceFuncs = {
|
||||||
.prepare = spice_char_source_prepare,
|
.prepare = spice_char_source_prepare,
|
||||||
.check = spice_char_source_check,
|
.check = spice_char_source_check,
|
||||||
.dispatch = spice_char_source_dispatch,
|
.dispatch = spice_char_source_dispatch,
|
||||||
|
|
Loading…
Reference in New Issue