Merge branch 'obsd-master' into master

pull/3023/head
Thomas Adam 2021-12-21 14:01:09 +00:00
commit 9c82ff1778
1 changed files with 3 additions and 3 deletions

6
tmux.h
View File

@ -669,15 +669,15 @@ struct grid_cell_entry {
/* Grid line. */
struct grid_line {
struct grid_cell_entry *celldata;
u_int cellused;
u_int cellsize;
struct grid_cell_entry *celldata;
u_int extdsize;
struct grid_extd_entry *extddata;
u_int extdsize;
int flags;
} __packed;
};
/* Entire grid of cells. */
struct grid {