d3d11device: Fix wrong printf formatting

Add missing '%' there

Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-bad/-/merge_requests/2069>
This commit is contained in:
Seungha Yang 2021-03-11 02:36:28 +09:00
parent a6b5e3c7d5
commit cdce27d975

View file

@ -710,8 +710,9 @@ gst_d3d11_device_constructed (GObject * object)
description = g_utf16_to_utf8 (desc.Description, -1, NULL, NULL, NULL);
GST_DEBUG_OBJECT (self,
"adapter index %d: D3D11 device vendor-id: 0x%04x, device-id: 0x%04x, "
"Flags: 0x%x, adapter-luid: " G_GINT64_FORMAT ", %s",
priv->adapter, desc.VendorId, desc.DeviceId, desc.Flags, description);
"Flags: 0x%x, adapter-luid: %" G_GINT64_FORMAT ", %s",
priv->adapter, desc.VendorId, desc.DeviceId, desc.Flags, adapter_luid,
description);
priv->vendor_id = desc.VendorId;
priv->device_id = desc.DeviceId;