mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 12:11:13 +00:00
tests: correctly print guintptr on mac
This commit is contained in:
parent
ca2205f773
commit
b2c6808a7f
1 changed files with 2 additions and 1 deletions
|
@ -2210,7 +2210,8 @@ realize_cb (GtkWidget * widget, PlaybackApp * app)
|
|||
app->embed_xid);
|
||||
#elif defined (GDK_WINDOWING_QUARTZ)
|
||||
app->embed_xid = (guintptr) gdk_quartz_window_get_nsview (window);
|
||||
g_print ("Window realize: video window NSView = %p\n", app->embed_xid);
|
||||
g_print ("Window realize: video window NSView = %" G_GUINTPTR_FORMAT "\n",
|
||||
app->embed_xid);
|
||||
#elif defined (GDK_WINDOWING_X11)
|
||||
app->embed_xid = GDK_WINDOW_XID (window);
|
||||
g_print ("Window realize: video window XID = %" G_GUINTPTR_FORMAT "\n",
|
||||
|
|
Loading…
Reference in a new issue