mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 23:06:49 +00:00
tests: Fix unitialized variable.
This commit is contained in:
parent
3a7d632a59
commit
d91a466dd5
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ main (gint argc, gchar ** argv)
|
||||||
GstEvent *pos_seek, *rate_seek;
|
GstEvent *pos_seek, *rate_seek;
|
||||||
GstQuery *pos;
|
GstQuery *pos;
|
||||||
/* options */
|
/* options */
|
||||||
gboolean use_adder;
|
gboolean use_adder = FALSE;
|
||||||
|
|
||||||
gst_init (&argc, &argv);
|
gst_init (&argc, &argv);
|
||||||
gst_controller_init (&argc, &argv);
|
gst_controller_init (&argc, &argv);
|
||||||
|
|
Loading…
Reference in a new issue