Do not return things from a void function

Reported in https://bugzilla.gnome.org/show_bug.cgi?id=724008
Author:    Ting-Wei Lan <lantw44@gmail.com>
This commit is contained in:
Ting-Wei Lan 2014-02-10 08:57:00 +00:00 committed by Matthias Clasen
parent 2671fa98f8
commit 3e02f52031

View File

@ -3725,7 +3725,7 @@ void
gdk_x11_window_set_theme_variant (GdkWindow *window,
char *variant)
{
return gdk_x11_window_set_utf8_property (window, "_GTK_THEME_VARIANT", variant);
gdk_x11_window_set_utf8_property (window, "_GTK_THEME_VARIANT", variant);
}
#define GDK_SELECTION_MAX_SIZE(display) \