aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorgerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2011-11-10 04:01:09 +0000
committergerald <gerald@f5534014-38df-0310-8fa8-9805f1628bb7>2011-11-10 04:01:09 +0000
commit22983dead950e36623d0eadf9e4b94c0aca1a7fc (patch)
tree8e9af8a73ca180bda26bdc0702beef50d36264bc /gtk
parent29d3484be638498cb53285b54c3ec65cc1d6ea40 (diff)
Pass a GMutex * instead of a GMutex **.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@39778 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk')
-rw-r--r--gtk/main_welcome.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gtk/main_welcome.c b/gtk/main_welcome.c
index fc11ca83ed..40d27a1f0b 100644
--- a/gtk/main_welcome.c
+++ b/gtk/main_welcome.c
@@ -1389,7 +1389,7 @@ welcome_new(void)
#if GLIB_CHECK_VERSION(2,31,0)
recent_mtx = g_malloc(sizeof(GMutex));
- g_mutex_init(&recent_mtx);
+ g_mutex_init(recent_mtx);
#else
recent_mtx = g_mutex_new();
#endif