Skip to content
Snippets Groups Projects
Commit d5fd524a authored by Wim Taymans's avatar Wim Taymans
Browse files

rtsession: fix compiler warning

parent 26a21e85
No related branches found
No related tags found
No related merge requests found
......@@ -2464,8 +2464,8 @@ ignore:
void
rtp_session_update_send_caps (RTPSession * sess, GstCaps * caps)
{
g_return_val_if_fail (RTP_IS_SESSION (sess), GST_FLOW_ERROR);
g_return_val_if_fail (GST_IS_CAPS (caps), GST_FLOW_ERROR);
g_return_if_fail (RTP_IS_SESSION (sess));
g_return_if_fail (GST_IS_CAPS (caps));
GST_LOG ("received caps %" GST_PTR_FORMAT, caps);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment