mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-25 11:11:08 +00:00
tests/sched/runxml.c: Fix GCC4 warning.
Original commit message from CVS: * tests/sched/runxml.c: (main): Fix GCC4 warning.
This commit is contained in:
parent
c6235da678
commit
f7105a2638
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-04-25 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* tests/sched/runxml.c: (main):
|
||||
Fix GCC4 warning.
|
||||
|
||||
2005-04-23 Ronald S. Bultje <rbultje@ronald.bitfreak.net>
|
||||
|
||||
* gst/gstpad.c: (gst_pad_link_prepare):
|
||||
|
|
|
@ -44,7 +44,7 @@ main (int argc, char *argv[])
|
|||
g_print ("\n *** using testfile %s\n", argv[1]);
|
||||
|
||||
xml = gst_xml_new ();
|
||||
gst_xml_parse_file (xml, argv[1], NULL);
|
||||
gst_xml_parse_file (xml, (guchar *) argv[1], NULL);
|
||||
|
||||
toplevelelements = gst_xml_get_topelements (xml);
|
||||
|
||||
|
|
Loading…
Reference in a new issue