mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-02 06:31:08 +00:00
libs: window: use G_GSIZE_MODIFIER for window id
gsize type is not equal in all platforms, then the 'l' print modifier shall not be used always. This issue was found in Debian builds.
This commit is contained in:
parent
e6943d668a
commit
92af6b82fa
1 changed files with 2 additions and 2 deletions
|
@ -247,8 +247,8 @@ gst_vaapi_window_new_internal (GType type, GstVaapiDisplay * display,
|
|||
|
||||
window = g_object_new (type, "display", display, "native-id", id, NULL);
|
||||
|
||||
GST_DEBUG_OBJECT (window, "new window with id = 0x%08lx and size %ux%u", id,
|
||||
width, height);
|
||||
GST_DEBUG_OBJECT (window, "new window with id = 0x%08" G_GSIZE_MODIFIER
|
||||
"x and size %ux%u", id, width, height);
|
||||
|
||||
if (!gst_vaapi_window_create (window, width, height))
|
||||
goto error;
|
||||
|
|
Loading…
Reference in a new issue