mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-03 17:56:17 +01:00
Fix another strict aliasing problem.
2006-01-05 Matthias Clasen <mclasen@redhat.com> * configure.in: Fix another strict aliasing problem.
This commit is contained in:
parent
fbf0e8bc7d
commit
e16ec3b973
@ -1,5 +1,7 @@
|
||||
2006-01-05 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* configure.in: Fix another strict aliasing problem.
|
||||
|
||||
* glib/gthreadpool.c: Avoid use of varargs macro. (#325864,
|
||||
Kazuki IWAMOTO)
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
2006-01-05 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* configure.in: Fix another strict aliasing problem.
|
||||
|
||||
* glib/gthreadpool.c: Avoid use of varargs macro. (#325864,
|
||||
Kazuki IWAMOTO)
|
||||
|
||||
|
@ -1,5 +1,7 @@
|
||||
2006-01-05 Matthias Clasen <mclasen@redhat.com>
|
||||
|
||||
* configure.in: Fix another strict aliasing problem.
|
||||
|
||||
* glib/gthreadpool.c: Avoid use of varargs macro. (#325864,
|
||||
Kazuki IWAMOTO)
|
||||
|
||||
|
@ -2358,7 +2358,7 @@ struct _GStaticMutex
|
||||
};
|
||||
#define G_STATIC_MUTEX_INIT { NULL, { { $g_mutex_contents} } }
|
||||
#define g_static_mutex_get_mutex(mutex) \\
|
||||
(g_thread_use_default_impl ? ((GMutex*) &((mutex)->static_mutex.pad)) : \\
|
||||
(g_thread_use_default_impl ? ((GMutex*) ((mutex)->static_mutex.pad)) : \\
|
||||
g_static_mutex_get_mutex_impl_shortcut (&((mutex)->runtime_mutex)))
|
||||
_______EOF
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user