summaryrefslogtreecommitdiff
path: root/tool
diff options
context:
space:
mode:
authorStef Walter <stefw@collabora.co.uk>2011-12-06 16:49:39 +0100
committerStef Walter <stefw@collabora.co.uk>2011-12-07 11:43:47 +0100
commitbde64e94f83a6da4eaff6503744e200c9f1f0081 (patch)
tree54abfc92ef0b1acca156e9d69bbdd131dd1d1a40 /tool
parent592ab2513d0738deaa7078c0fdf73bf0f4005a5f (diff)
downloadgnome-keyring-bde64e94f83a6da4eaff6503744e200c9f1f0081.tar.gz
Fix for deprecations in glib 2.31.x
* Mainly g_mutex_new/g_mutex_free g_cond_new/g_cond_free * Since we like to build with the last stable version of glib, using #ifdef until these glib changes make it into a stable release.
Diffstat (limited to 'tool')
-rw-r--r--tool/gkr-tool.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tool/gkr-tool.c b/tool/gkr-tool.c
index 73aac6db..f783802d 100644
--- a/tool/gkr-tool.c
+++ b/tool/gkr-tool.c
@@ -116,8 +116,7 @@ main (int argc, char *argv[])
int ret = -1;
g_type_init ();
- g_thread_init (NULL);
-
+
#ifdef HAVE_LOCALE_H
/* internationalisation */
setlocale (LC_ALL, "");