diff options
| -rw-r--r-- | plugingui/nativewindow_x11.cc | 2 | 
1 files changed, 1 insertions, 1 deletions
| 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<Event> 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)  	{ | 
