summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2018-06-20 11:38:17 +0530
committerNirbheek Chauhan <nirbheek@centricular.com>2018-06-20 11:38:17 +0530
commitdd3e7325b038599b041ff3385b416f69d3b06131 (patch)
tree2615ad42d1f55b21b76df1e89e5bbb7822dd771c /sys
parentc052ae511af26c4532ff9178d6f2dcf9001a2dd7 (diff)
downloadgstreamer-plugins-bad-dd3e7325b038599b041ff3385b416f69d3b06131.tar.gz
decklink: Fix warning about HRESULT not being unsigned int
Diffstat (limited to 'sys')
-rw-r--r--sys/decklink/gstdecklinkaudiosink.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/decklink/gstdecklinkaudiosink.cpp b/sys/decklink/gstdecklinkaudiosink.cpp
index 5f45f5bc0..9ba5220c4 100644
--- a/sys/decklink/gstdecklinkaudiosink.cpp
+++ b/sys/decklink/gstdecklinkaudiosink.cpp
@@ -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;
}