diff options
author | Peter Harris <peter.harris@hummingbird.com> | 2008-12-04 09:43:41 -0500 |
---|---|---|
committer | Peter Harris <peter.harris@hummingbird.com> | 2008-12-05 12:41:22 -0500 |
commit | 88cb77f44e3364dfbe6e7a3b4cf69be1d5dd1ea6 (patch) | |
tree | 9ce04244bae74132a55bf5a6c52e967d0c8285c6 | |
parent | c9796f2f53a4ef16f5f5c8f3b7d01bc2ceb11547 (diff) |
Fix the type of 'input' in icccm/xcb_icccm.h/xcb_wm_hints_t
This bug behaves even worse, affecting all fields subsequent to input, if
someone insane compiles with -fpack-struct=1
-rw-r--r-- | icccm/xcb_icccm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/icccm/xcb_icccm.h b/icccm/xcb_icccm.h index 2cf56a3..2e80633 100644 --- a/icccm/xcb_icccm.h +++ b/icccm/xcb_icccm.h @@ -632,7 +632,7 @@ typedef struct { int32_t flags; /** Does this application rely on the window manager to get keyboard input? */ - uint8_t input; + uint32_t input; /** See below */ int32_t initial_state; /** Pixmap to be used as icon */ |