From 51575c3fca79b90953502dd1fa574711155a167e Mon Sep 17 00:00:00 2001 From: Stefan Weil Date: Fri, 6 Feb 2015 22:43:14 +0100 Subject: [PATCH] spice: Add missing 'static' attribute Signed-off-by: Stefan Weil Signed-off-by: Michael Tokarev --- spice-qemu-char.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, -- 2.30.2