mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-03-14 15:43:03 +00:00
wasapi: Squelch warning about %x and HRESULT
HRESULT is always a 32-bit value, as is guint.
This commit is contained in:
parent
759e695d8a
commit
c6fa635b21
1 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@
|
|||
do { \
|
||||
if (hr != S_OK) { \
|
||||
gchar *msg = gst_wasapi_util_hresult_to_string (hr); \
|
||||
GST_ERROR_OBJECT (self, #func " failed (%x): %s", hr, msg); \
|
||||
GST_ERROR_OBJECT (self, #func " failed (%x): %s", (guint) hr, msg); \
|
||||
g_free (msg); \
|
||||
and; \
|
||||
} \
|
||||
|
|
Loading…
Reference in a new issue