From af366f49970ed91a414e5b832a13436417be4bdb Mon Sep 17 00:00:00 2001 From: =?utf8?q?Andreas=20M=C3=BCller?= Date: Fri, 10 Apr 2020 13:04:53 +0200 Subject: [PATCH] main.c: remove deprected an unnecessaty g_thread_init MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit | ../git/main.c: In function 'main': | ../git/main.c:324:3: warning: 'g_thread_init' is deprecated [-Wdeprecated-declarations] | 324 | g_thread_init(NULL); | | ^~~~~~~~~~~~~ Signed-off-by: Andreas Müller --- main.c | 1 - 1 file changed, 1 deletion(-) diff --git a/main.c b/main.c index c8fff1c..254316f 100644 --- a/main.c +++ b/main.c @@ -321,7 +321,6 @@ main(int argc, char *argv[]) } /* init threads */ - g_thread_init(NULL); gdk_threads_init(); gdk_threads_enter(); -- 2.11.4.GIT