From e0aee14533d7a341c29643d8f3831d834cf88b11 Mon Sep 17 00:00:00 2001 From: krypt-n Date: Sun, 15 Nov 2015 23:06:19 +0100 Subject: [PATCH] Saving 4 byte of memory on 32-Bit systems --- lemonbar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lemonbar.c b/lemonbar.c index c6e0b29..4f2ce26 100644 --- a/lemonbar.c +++ b/lemonbar.c @@ -40,7 +40,7 @@ typedef struct area_t { unsigned int end:16; bool active:1; int align:3; - int button; + unsigned int button:3; xcb_window_t window; char *cmd; } area_t;