mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-26 19:51:11 +00:00
fpsdisplaysink: init variable to NULL to avoid compiler warning
Fixes #580901.
This commit is contained in:
parent
5704bc8f89
commit
8d4315ee5c
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue