From d91a466dd5822ec0728b348ab55a441b0048a62f Mon Sep 17 00:00:00 2001 From: Edward Hervey Date: Thu, 11 Mar 2010 16:09:26 +0100 Subject: [PATCH] tests: Fix unitialized variable. --- tests/icles/audio-trickplay.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/icles/audio-trickplay.c b/tests/icles/audio-trickplay.c index 64440cd603..382d7d24ea 100644 --- a/tests/icles/audio-trickplay.c +++ b/tests/icles/audio-trickplay.c @@ -36,7 +36,7 @@ main (gint argc, gchar ** argv) GstEvent *pos_seek, *rate_seek; GstQuery *pos; /* options */ - gboolean use_adder; + gboolean use_adder = FALSE; gst_init (&argc, &argv); gst_controller_init (&argc, &argv);