inputselector: fix build with debug cached buffers enabled

gstinputselector.c:818:5: error: format not a string literal
and no format arguments [-Werror=format-security]
This commit is contained in:
Thiago Santos 2014-04-03 18:17:03 -03:00
parent 37670af79c
commit e06f9667b0

View file

@ -812,7 +812,7 @@ gst_input_selector_debug_cached_buffers (GstInputSelector * sel)
GST_TIME_ARGS (GST_BUFFER_TIMESTAMP (cached_buffer->buffer)));
}
str = g_string_free (timestamps, FALSE);
GST_DEBUG_OBJECT (selpad, str);
GST_DEBUG_OBJECT (selpad, "%s", str);
g_free (str);
}
}