diff options
author | Tristan Matthews <le.businessman@gmail.com> | 2009-04-30 17:08:52 +0100 |
---|---|---|
committer | Dave Robillard <dave@drobilla.net> | 2009-05-03 12:03:19 -0400 |
commit | fe3a3626a3cf4f310e36129cfd2b9b57390910be (patch) | |
tree | 1d6b942523d4e6f21e8cee5548b2cab6b3ae233b | |
parent | 56ea0f7f66fd49e749a4269cd19a1ae64e01c94b (diff) | |
download | gst-plugins-bad-fe3a3626a3cf4f310e36129cfd2b9b57390910be.tar.gz gst-plugins-bad-fe3a3626a3cf4f310e36129cfd2b9b57390910be.tar.bz2 gst-plugins-bad-fe3a3626a3cf4f310e36129cfd2b9b57390910be.zip |
fpsdisplaysink: init variable to NULL to avoid compiler warning
Fixes #580901.
-rw-r--r-- | gst/debugutils/fpsdisplaysink.c | 2 |
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; |