diff options
author | emersion <contact@emersion.fr> | 2017-10-05 15:42:16 +0200 |
---|---|---|
committer | emersion <contact@emersion.fr> | 2017-10-05 19:10:24 +0200 |
commit | ca68ef37f056562206b0c4b0442cbfedc8a5e5f3 (patch) | |
tree | 101622128d235caf29892366cbc03e26b855b698 /include | |
parent | ed9796ec683b64655c60b09f0c9969263f4394d6 (diff) |
Add padding if xcb_icccm is not available
Diffstat (limited to 'include')
-rw-r--r-- | include/wlr/xwayland.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/wlr/xwayland.h b/include/wlr/xwayland.h index 181259fa..3cbaee59 100644 --- a/include/wlr/xwayland.h +++ b/include/wlr/xwayland.h @@ -60,6 +60,8 @@ struct wlr_xwayland_surface { uint32_t motif_hints[5]; #ifdef HAS_XCB_ICCCM xcb_size_hints_t size_hints; + #else + char size_hints_padding[72]; #endif struct { |