summaryrefslogtreecommitdiffstats
path: root/tmux.h
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2019-07-06 23:02:26 +0100
committerThomas Adam <thomas@xteddy.org>2019-07-06 23:02:26 +0100
commit3a4cf62aa9819472a26f0ed3c3101d7556184656 (patch)
treeda8ac1f44535bf4565a62148a3cb838fb3d80ff0 /tmux.h
parentbc112a8c8990f272144b482e13c1ce32ac9722e0 (diff)
parentddf53d6e4e76463e6d777b2de7304572333935e9 (diff)
Merge branch 'obsd-master'
Diffstat (limited to 'tmux.h')
-rw-r--r--tmux.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tmux.h b/tmux.h
index f09200ed..edc6de1f 100644
--- a/tmux.h
+++ b/tmux.h
@@ -598,13 +598,13 @@ enum utf8_state {
/* Grid cell data. */
struct grid_cell {
- u_char flags;
+ struct utf8_data data; /* 21 bytes */
u_short attr;
+ u_char flags;
int fg;
int bg;
int us;
- struct utf8_data data;
-};
+} __packed;
struct grid_cell_entry {
u_char flags;
union {