Branch: refs/heads/master Author: Colomban Wendling ban@herbesfolles.org Committer: Colomban Wendling ban@herbesfolles.org Date: Mon, 01 Jun 2015 17:23:34 UTC Commit: 8d00daa5a6d88dcd4c2f39ce0d2f40fc1e0c7542 https://github.com/geany/geany-plugins/commit/8d00daa5a6d88dcd4c2f39ce0d2f40...
Log Message: ----------- git-changebar: Fix deprecated thread creation code path
Modified Paths: -------------- git-changebar/src/gcb-plugin.c
Modified: git-changebar/src/gcb-plugin.c 2 lines changed, 1 insertions(+), 1 deletions(-) =================================================================== @@ -458,7 +458,7 @@ get_cached_blob_contents_async (const gchar *path, #if GLIB_CHECK_VERSION (2, 32, 0) G_thread = g_thread_new (PLUGIN"/blob-worker", worker_thread, G_queue); #else - G_thread = g_thread_create (worker_thread, G_queue, NULL, NULL); + G_thread = g_thread_create (worker_thread, G_queue, FALSE, NULL); #endif }
-------------- This E-Mail was brought to you by github_commit_mail.py (Source: https://github.com/geany/infrastructure).