diff options
author | raveit65 <[email protected]> | 2014-03-22 19:13:58 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2014-03-22 19:13:58 +0100 |
commit | a395859226fd2532b5a8a59757c460ccbd26ded0 (patch) | |
tree | fc18624d51918ca042a169d3f975cb44326735d6 /test/test-copy.c | |
parent | e0d7a6b033f7ae2bbd504af86aec009def16d6d5 (diff) | |
download | caja-a395859226fd2532b5a8a59757c460ccbd26ded0.tar.bz2 caja-a395859226fd2532b5a8a59757c460ccbd26ded0.tar.xz |
fix some g_thread_init deprecations
Diffstat (limited to 'test/test-copy.c')
-rw-r--r-- | test/test-copy.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/test-copy.c b/test/test-copy.c index 5eaab1e5..81407812 100644 --- a/test/test-copy.c +++ b/test/test-copy.c @@ -45,7 +45,9 @@ main (int argc, char* argv[]) GList *infos; CajaProgressInfo *progress_info; - g_thread_init (NULL); +#if !GLIB_CHECK_VERSION (2, 32, 0) + g_thread_init (NULL); +#endif test_init (&argc, &argv); |