summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Paulson-Ellis <chris@edesix.com>2014-02-04 13:49:35 +0100
committerSebastian Dröge <sebastian@centricular.com>2014-02-04 13:49:35 +0100
commitd64547e111ec689521e68dea790da1330aa8c462 (patch)
treeb449364dbcc5fa47060476fb10fd37088c34b399
parent259e6f80ed63d307b0bf60fc405151d567363812 (diff)
x11: Use correct format string for guintptr
https://bugzilla.gnome.org/show_bug.cgi?id=723537
-rw-r--r--gst-libs/gst/gl/x11/gstglwindow_x11.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst-libs/gst/gl/x11/gstglwindow_x11.c b/gst-libs/gst/gl/x11/gstglwindow_x11.c
index e2ed2b4..ad100fe 100644
--- a/gst-libs/gst/gl/x11/gstglwindow_x11.c
+++ b/gst-libs/gst/gl/x11/gstglwindow_x11.c
@@ -418,7 +418,7 @@ gst_gl_window_x11_set_window_handle (GstGLWindow * window, guintptr id)
* If no loop then the parent is directly set in XCreateWindow
*/
if (window_x11->loop && g_main_loop_is_running (window_x11->loop)) {
- GST_LOG ("set parent window id: %lud", id);
+ GST_LOG ("set parent window id: %" G_GUINTPTR_FORMAT, id);
g_mutex_lock (&window_x11->disp_send_lock);
XGetWindowAttributes (window_x11->disp_send, window_x11->parent_win, &attr);