mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-02-20 21:16:24 +00:00
eglglessink: Fix compiler warning
gstegladaptation_egl.c: In function 'gst_egl_adaptation_create_native_window': gstegladaptation_egl.c:868:3: error: format '%p' expects argument of type 'void *', but argument 8 has type 'EGLNativeWindowType' [-Werror=format=] GST_DEBUG_OBJECT (ctx->element, "Using window handle %p", window); ^
This commit is contained in:
parent
149cb5a7cf
commit
0fe6fbd677
1 changed files with 1 additions and 1 deletions
|
@ -865,7 +865,7 @@ gst_egl_adaptation_create_native_window (GstEglAdaptationContext * ctx,
|
|||
platform_create_native_window (width, height, own_window_data);
|
||||
if (window)
|
||||
gst_egl_adaptation_set_window (ctx, window);
|
||||
GST_DEBUG_OBJECT (ctx->element, "Using window handle %p", window);
|
||||
GST_DEBUG_OBJECT (ctx->element, "Using window handle %p", (gpointer) window);
|
||||
return window != 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue