avi/wav: Fix some compiler warnings about incompatible pointers.

This commit is contained in:
Jan Schmidt 2009-10-08 10:20:09 +01:00
parent db6af4bd57
commit cdb0b68e21
2 changed files with 2 additions and 2 deletions

View file

@ -4166,7 +4166,7 @@ gst_avi_demux_chain (GstPad * pad, GstBuffer * buf)
if (G_UNLIKELY (avi->abort_buffering)) {
avi->abort_buffering = FALSE;
res = GST_FLOW_ERROR;
GST_ELEMENT_ERROR (avi, STREAM, DEMUX, NULL, ("unhandled buffer size"));
GST_ELEMENT_ERROR (avi, STREAM, DEMUX, (NULL), ("unhandled buffer size"));
}
return res;

View file

@ -2097,7 +2097,7 @@ done:
wav->abort_buffering = FALSE;
ret = GST_FLOW_ERROR;
/* sort of demux/parse error */
GST_ELEMENT_ERROR (wav, STREAM, DEMUX, NULL, ("unhandled buffer size"));
GST_ELEMENT_ERROR (wav, STREAM, DEMUX, (NULL), ("unhandled buffer size"));
}
return ret;