mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 17:20:36 +00:00
decklink: Fix warning about HRESULT not being unsigned int
This commit is contained in:
parent
c052ae511a
commit
dd3e7325b0
1 changed files with 1 additions and 1 deletions
|
@ -722,7 +722,7 @@ gst_decklink_audio_sink_render (GstBaseSink * bsink, GstBuffer * buffer)
|
|||
// or are not started yet and there's nothing we can do at this point
|
||||
GST_INFO_OBJECT (self,
|
||||
"Ignoring scheduling error 0x%08x because we're not started yet"
|
||||
" or not anymore", ret);
|
||||
" or not anymore", (guint) ret);
|
||||
flow_ret = GST_FLOW_OK;
|
||||
break;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue