aboutsummaryrefslogtreecommitdiffstats
path: root/src/window-xlib.h
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2016-06-04 03:50:08 -0400
committerJesse Luehrs <doy@tozt.net>2016-06-04 03:50:08 -0400
commit39622a7dd26c06feb52a369fba1acfbcef8ea809 (patch)
tree88f248034c2aed06590c6076159b15858fa689b1 /src/window-xlib.h
parente841e9a59cc9c7e46ea449b04627da0c959576a6 (diff)
downloadrunes-39622a7dd26c06feb52a369fba1acfbcef8ea809.tar.gz
runes-39622a7dd26c06feb52a369fba1acfbcef8ea809.zip
bitfields are required to be declared as ints
Diffstat (limited to 'src/window-xlib.h')
-rw-r--r--src/window-xlib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/window-xlib.h b/src/window-xlib.h
index 914be91..21ac4de 100644
--- a/src/window-xlib.h
+++ b/src/window-xlib.h
@@ -16,8 +16,8 @@ struct runes_window {
cairo_t *backend_cr;
- char visual_bell_is_ringing: 1;
- char delaying: 1;
+ unsigned int visual_bell_is_ringing: 1;
+ unsigned int delaying: 1;
};
RunesWindow *runes_window_new(RunesWindowBackend *wb);