aboutsummaryrefslogtreecommitdiff
path: root/grid.c
diff options
context:
space:
mode:
authorThomas Adam <thomas@xteddy.org>2016-10-18 22:01:12 +0100
committerThomas Adam <thomas@xteddy.org>2016-10-18 22:01:12 +0100
commit3a6beea06460826a89b43bdc85270973105e47ff (patch)
tree053c4839855a89bfb68fae219d10c2faf73591ba /grid.c
parentec47907772b8302ca23b8a8a0b406c4e39e99f47 (diff)
parente0e9a54a325da2f5648fdb6f429f22a6c12a5fb3 (diff)
downloadrtmux-3a6beea06460826a89b43bdc85270973105e47ff.tar.gz
rtmux-3a6beea06460826a89b43bdc85270973105e47ff.tar.bz2
rtmux-3a6beea06460826a89b43bdc85270973105e47ff.zip
Merge branch 'obsd-master'
Diffstat (limited to 'grid.c')
-rw-r--r--grid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/grid.c b/grid.c
index 9619c4fe..dbb4fe64 100644
--- a/grid.c
+++ b/grid.c
@@ -90,7 +90,7 @@ grid_clear_cell(struct grid *gd, u_int px, u_int py, u_int bg)
struct grid_cell_entry *gce = &gl->celldata[px];
struct grid_cell *gc;
- memcpy(gce, &grid_default_cell, sizeof *gce);
+ memcpy(gce, &grid_default_entry, sizeof *gce);
if (bg & COLOUR_FLAG_RGB) {
gc = grid_extended_cell(gl, gce, &grid_default_cell);
gc->bg = bg;