tests/utils: Return GTask after flushing input

This silences a debug warning from glib.

Part-of: <https://gitlab.gnome.org/GNOME/mutter/-/merge_requests/3859>
This commit is contained in:
Jonas Ådahl 2024-11-14 22:17:30 +01:00 committed by Sebastian Wick
parent ff2c329074
commit 29850b7345

View File

@ -887,6 +887,8 @@ queue_callback (GTask *task)
g_cond_signal (&cond);
g_mutex_unlock (&mutex);
g_task_return_boolean (task, TRUE);
return G_SOURCE_REMOVE;
}
#endif