diff --git a/ChangeLog b/ChangeLog index 8e3dd2ccb3..737f28fe0a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2004-05-22 David Schleef + + * gst/registries/gstxmlregistry.c: + (gst_xml_registry_parse_padtemplate): Fix warning on OS X. + (bug #142957) + 2004-05-22 Thomas Vander Stichele * configure.ac: diff --git a/gst/registries/gstxmlregistry.c b/gst/registries/gstxmlregistry.c index f5e6699e17..ce1735785e 100644 --- a/gst/registries/gstxmlregistry.c +++ b/gst/registries/gstxmlregistry.c @@ -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;