mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-18 14:26:43 +00:00
tests: cast the arg. to fix the build with new compiler opts.
This is ugly. I am not sure if we really want to have such casts all over the place.
This commit is contained in:
parent
4ba031a7e2
commit
0723c86046
1 changed files with 2 additions and 2 deletions
|
@ -49,8 +49,8 @@ GST_START_TEST (test_buffer_range)
|
||||||
GstCaps *caps;
|
GstCaps *caps;
|
||||||
|
|
||||||
fail_unless (gst_type_find_register (NULL, "foo/x-bar",
|
fail_unless (gst_type_find_register (NULL, "foo/x-bar",
|
||||||
GST_RANK_PRIMARY + 50, foobar_typefind, foobar_exts, FOOBAR_CAPS,
|
GST_RANK_PRIMARY + 50, foobar_typefind, (gchar **) foobar_exts,
|
||||||
NULL, NULL));
|
FOOBAR_CAPS, NULL, NULL));
|
||||||
|
|
||||||
buf = gst_buffer_new ();
|
buf = gst_buffer_new ();
|
||||||
fail_unless (buf != NULL);
|
fail_unless (buf != NULL);
|
||||||
|
|
Loading…
Reference in a new issue