diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-02-05 11:03:39 +0100 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2017-02-05 11:03:39 +0100 |
commit | 6eb1df1c868175027c09e8e8fe04e1393405505f (patch) | |
tree | 0e1582bd0f67080e798681d850c310cdbdddc9ce | |
parent | 410d802eecedb06fb09f651d86c04438f93ee5a9 (diff) |
Fix 64 bit compilation.
-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) { |