Avoid a compiler warning

gcc doesn't like returning without a value from a non-void
function.
This commit is contained in:
Matthias Clasen
2014-01-27 21:58:44 -05:00
parent a02c413f7d
commit 1c42bb5e34

View File

@@ -2294,7 +2294,7 @@ _gtk_selection_request (GtkWidget *widget,
gulong selection_max_size;
if (event->requestor == NULL)
return;
return FALSE;
if (initialize)
gtk_selection_init ();