From 7ba753b002ca9888a46137b65f347a2f5f408e9e Mon Sep 17 00:00:00 2001 From: Murray Cumming Date: Mon, 4 Jul 2011 08:58:00 +0200 Subject: [PATCH] G_STATIC_REC_MUTEX_INIT: Fix missing initialization. Add the third struct field, zeroed, to avoid a compiler warning. --- glib/gthread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/glib/gthread.h b/glib/gthread.h index 40dafe511..9f5b34b54 100644 --- a/glib/gthread.h +++ b/glib/gthread.h @@ -271,7 +271,7 @@ struct _GStaticRecMutex GSystemThread owner; }; -#define G_STATIC_REC_MUTEX_INIT { G_STATIC_MUTEX_INIT, 0 } +#define G_STATIC_REC_MUTEX_INIT { G_STATIC_MUTEX_INIT, 0, {{0, 0, 0, 0}} } void g_static_rec_mutex_init (GStaticRecMutex *mutex); void g_static_rec_mutex_lock (GStaticRecMutex *mutex); gboolean g_static_rec_mutex_trylock (GStaticRecMutex *mutex);