mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 15:51:11 +00:00
tag: Explicit cast to GThreadFunc to silence MS compiler.
https://bugzilla.gnome.org/show_bug.cgi?id=646744
This commit is contained in:
parent
e15bff77fb
commit
7b142178e4
1 changed files with 2 additions and 2 deletions
|
@ -837,7 +837,7 @@ deserialize_tiff_orientation (XmpTag * xmptag, GstTagList * taglist,
|
|||
* http://www.sno.phy.queensu.ca/~phil/exiftool/TagNames/XMP.html
|
||||
*/
|
||||
static gpointer
|
||||
_init_xmp_tag_map ()
|
||||
_init_xmp_tag_map (gpointer user_data)
|
||||
{
|
||||
GPtrArray *array;
|
||||
XmpTag *xmpinfo;
|
||||
|
@ -984,7 +984,7 @@ static void
|
|||
xmp_tags_initialize ()
|
||||
{
|
||||
static GOnce my_once = G_ONCE_INIT;
|
||||
g_once (&my_once, _init_xmp_tag_map, NULL);
|
||||
g_once (&my_once, (GThreadFunc)_init_xmp_tag_map, NULL);
|
||||
}
|
||||
|
||||
typedef struct _GstXmpNamespaceMatch GstXmpNamespaceMatch;
|
||||
|
|
Loading…
Reference in a new issue