Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Seungha Yang
gst-plugins-base
Commits
7b142178
Commit
7b142178
authored
Apr 04, 2011
by
Haakon Sporsheim
Committed by
Tim-Philipp Müller
Apr 04, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tag: Explicit cast to GThreadFunc to silence MS compiler.
https://bugzilla.gnome.org/show_bug.cgi?id=646744
parent
e15bff77
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
gst-libs/gst/tag/gstxmptag.c
gst-libs/gst/tag/gstxmptag.c
+2
-2
No files found.
gst-libs/gst/tag/gstxmptag.c
View file @
7b142178
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment