diff options
| author | Stefan Weil | 2015-02-06 22:43:14 +0100 |
|---|---|---|
| committer | Michael Tokarev | 2015-02-10 08:26:05 +0100 |
| commit | 51575c3fca79b90953502dd1fa574711155a167e (patch) | |
| tree | badc70af93f93daeb921bcd2dc95439b556fa5e4 | |
| parent | serial: Fix warnings caused by missing 'static' attribute (diff) | |
| download | qemu-51575c3fca79b90953502dd1fa574711155a167e.tar.gz qemu-51575c3fca79b90953502dd1fa574711155a167e.tar.xz qemu-51575c3fca79b90953502dd1fa574711155a167e.zip | |
spice: Add missing 'static' attribute
Signed-off-by: Stefan Weil <sw@weilnetz.de>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
| -rw-r--r-- | spice-qemu-char.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spice-qemu-char.c b/spice-qemu-char.c index 7e0d300777..a4f4e578fe 100644 --- a/spice-qemu-char.c +++ b/spice-qemu-char.c @@ -158,7 +158,7 @@ static gboolean spice_char_source_dispatch(GSource *source, return func(NULL, G_IO_OUT, user_data); } -GSourceFuncs SpiceCharSourceFuncs = { +static GSourceFuncs SpiceCharSourceFuncs = { .prepare = spice_char_source_prepare, .check = spice_char_source_check, .dispatch = spice_char_source_dispatch, |
