summaryrefslogtreecommitdiffstats
path: root/source/dialogs
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2017-06-03 15:45:16 +0200
committerDave Davenport <qball@gmpclient.org>2017-06-03 15:45:16 +0200
commit539172187f60d62c6fceb091296d59bb64e6026b (patch)
treef6827bf4f750b7df90fbb5264ac34eadc70a6a95 /source/dialogs
parent35e2e2a1cbcd39cf00d877124c48bdfabbed3b4e (diff)
Don't depend on latest of glib.
Diffstat (limited to 'source/dialogs')
-rw-r--r--source/dialogs/drun.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/dialogs/drun.c b/source/dialogs/drun.c
index 77a6dd40..12c37185 100644
--- a/source/dialogs/drun.c
+++ b/source/dialogs/drun.c
@@ -580,7 +580,7 @@ static void drun_mode_destroy ( Mode *sw )
g_async_queue_lock ( rmpd->icon_fetch_queue );
while ( g_async_queue_try_pop_unlocked ( rmpd->icon_fetch_queue ) );
// Make the thread quit.
- g_async_queue_push_front_unlocked ( rmpd->icon_fetch_queue, (gpointer) &(rmpd->quit_entry));
+ g_async_queue_push_unlocked ( rmpd->icon_fetch_queue, (gpointer) &(rmpd->quit_entry));
g_async_queue_unlock ( rmpd->icon_fetch_queue );
g_thread_join ( rmpd->thread );
rmpd->thread = NULL;