CVSROOT: /cvs Module name: src Changes by: [email protected] 2023/05/08 04:03:39
Modified files:
usr.bin/tmux : grid.c tmux.h
Log message:
Reorder struct grid_cell_entry
On aarch64 with llvm 15, the new -Wunaligned-access emits noise on every
one of tmux's source files. This avoids this warning by moving a u_char
to the end of the struct. This does not change the size of the struct on
any architecture.
ok nicm
