Don't return a value from a void function

Reported in bug 654720, patch by Brian Cameron.
This commit is contained in:
Matthias Clasen 2011-07-17 18:05:17 -04:00
parent bb4c98b783
commit 25a4e8e7de

View File

@ -10702,7 +10702,7 @@ gdk_drag_begin_for_device (GdkWindow *window,
void
gdk_test_render_sync (GdkWindow *window)
{
return GDK_WINDOW_IMPL_GET_CLASS (window->impl)->sync_rendering (window);
GDK_WINDOW_IMPL_GET_CLASS (window->impl)->sync_rendering (window);
}
/**