From dd3e7325b038599b041ff3385b416f69d3b06131 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Wed, 20 Jun 2018 11:38:17 +0530 Subject: [PATCH] decklink: Fix warning about HRESULT not being unsigned int --- sys/decklink/gstdecklinkaudiosink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/decklink/gstdecklinkaudiosink.cpp b/sys/decklink/gstdecklinkaudiosink.cpp index 5f45f5b..9ba5220 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; } -- 2.7.4