summaryrefslogtreecommitdiffstats
path: root/gst/debugutils
diff options
context:
space:
mode:
authorTristan Matthews <le.businessman@gmail.com>2009-04-30 17:08:52 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-04-30 17:09:28 +0100
commit8d4315ee5c74c5bb6bb6adf9ed5824101d9ccda1 (patch)
tree51a706f3862d02b4e405a781577fc78bde866d3c /gst/debugutils
parent5704bc8f89c745a86dbe435a2e2c008c499e8132 (diff)
downloadgst-plugins-bad-8d4315ee5c74c5bb6bb6adf9ed5824101d9ccda1.tar.gz
gst-plugins-bad-8d4315ee5c74c5bb6bb6adf9ed5824101d9ccda1.tar.bz2
gst-plugins-bad-8d4315ee5c74c5bb6bb6adf9ed5824101d9ccda1.zip
fpsdisplaysink: init variable to NULL to avoid compiler warning
Fixes #580901.
Diffstat (limited to 'gst/debugutils')
-rw-r--r--gst/debugutils/fpsdisplaysink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/debugutils/fpsdisplaysink.c b/gst/debugutils/fpsdisplaysink.c
index 22568fe6..d22dfad3 100644
--- a/gst/debugutils/fpsdisplaysink.c
+++ b/gst/debugutils/fpsdisplaysink.c
@@ -273,7 +273,7 @@ display_current_fps (gpointer data)
static void
fps_display_sink_start (FPSDisplaySink * self)
{
- GstPad *target_pad;
+ GstPad *target_pad = NULL;
/* Init counters */
self->priv->next_ts = GST_CLOCK_TIME_NONE;