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:
Sebastian Dröge 2013-04-16 22:14:09 +02:00
parent 149cb5a7cf
commit 0fe6fbd677

View file

@ -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;
}