From 6eb1df1c868175027c09e8e8fe04e1393405505f Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sun, 5 Feb 2017 11:03:39 +0100 Subject: Fix 64 bit compilation. --- plugingui/nativewindow_x11.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugingui/nativewindow_x11.cc') diff --git a/plugingui/nativewindow_x11.cc b/plugingui/nativewindow_x11.cc index c59124b..5bbf8ae 100644 --- a/plugingui/nativewindow_x11.cc +++ b/plugingui/nativewindow_x11.cc @@ -476,7 +476,7 @@ std::shared_ptr NativeWindowX11::translateXMessage(XEvent& xevent, void NativeWindowX11::allocateShmImage(std::size_t width, std::size_t height) { - DEBUG(x11, "(Re)alloc XShmImage (%d, %d)", width, height); + DEBUG(x11, "(Re)alloc XShmImage (%d, %d)", (int)width, (int)height); if(image) { -- cgit v1.2.3