projects
/
platform
/
upstream
/
glib.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8fdfa8b
)
G_STATIC_REC_MUTEX_INIT: Fix missing initialization.
author
Murray Cumming
<murrayc@murrayc.com>
Mon, 4 Jul 2011 06:58:00 +0000
(08:58 +0200)
committer
Murray Cumming
<murrayc@murrayc.com>
Mon, 4 Jul 2011 06:58:00 +0000
(08:58 +0200)
Add the third struct field, zeroed, to avoid a compiler warning.
glib/gthread.h
patch
|
blob
|
history
diff --git
a/glib/gthread.h
b/glib/gthread.h
index
40dafe5
..
9f5b34b
100644
(file)
--- 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);