mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 11:41:09 +00:00
gst/registries/gstxmlregistry.c: Fix warning on OS X. (bug #142957)
Original commit message from CVS: * gst/registries/gstxmlregistry.c: (gst_xml_registry_parse_padtemplate): Fix warning on OS X. (bug #142957)
This commit is contained in:
parent
25c9a7a02c
commit
b3dda2995f
2 changed files with 8 additions and 2 deletions
|
@ -1,3 +1,9 @@
|
|||
2004-05-22 David Schleef <ds@schleef.org>
|
||||
|
||||
* gst/registries/gstxmlregistry.c:
|
||||
(gst_xml_registry_parse_padtemplate): Fix warning on OS X.
|
||||
(bug #142957)
|
||||
|
||||
2004-05-22 Thomas Vander Stichele <thomas at apestaart dot org>
|
||||
|
||||
* configure.ac:
|
||||
|
|
|
@ -880,8 +880,8 @@ gst_xml_registry_parse_padtemplate (GMarkupParseContext * context,
|
|||
g_assert (registry->caps == NULL);
|
||||
registry->caps = gst_caps_from_string (s);
|
||||
if (registry->caps == NULL) {
|
||||
g_critical ("Could not parse caps: length %d, content: %*s\n", text_len,
|
||||
text_len, text);
|
||||
g_critical ("Could not parse caps: length %d, content: %*s\n",
|
||||
(int) text_len, (int) text_len, text);
|
||||
}
|
||||
g_free (s);
|
||||
return TRUE;
|
||||
|
|
Loading…
Reference in a new issue