gfio: add check for unnecessary g_thread_init() call
authorJens Axboe <axboe@kernel.dk>
Mon, 3 Dec 2012 20:12:59 +0000 (21:12 +0100)
committerJens Axboe <axboe@kernel.dk>
Mon, 3 Dec 2012 20:12:59 +0000 (21:12 +0100)
Annoying gtk likes to spew annoying deprecated warnings.

Signed-off-by: Jens Axboe <axboe@kernel.dk>
gfio.c

diff --git a/gfio.c b/gfio.c
index 185dbd5c482456bc89d23ac14a041e79e2350a5a..65302e6075a01daad0b794417909e0e213b4f66a 100644 (file)
--- a/gfio.c
+++ b/gfio.c
@@ -1677,8 +1677,11 @@ static void init_ui(int *argc, char **argv[], struct gui *ui)
         * Without it, the update that happens in gfio_update_thread_status
         * doesn't really happen in a timely fashion, you need expose events
         */
+#if !GTK_CHECK_VERSION(2, 24, 0)
        if (!g_thread_supported())
                g_thread_init(NULL);
+#endif
+
        gdk_threads_init();
 
        gtk_init(argc, argv);