diff options
author | Thomas Adam <thomas@xteddy.org> | 2016-10-18 22:01:12 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2016-10-18 22:01:12 +0100 |
commit | 3a6beea06460826a89b43bdc85270973105e47ff (patch) | |
tree | 053c4839855a89bfb68fae219d10c2faf73591ba /grid.c | |
parent | ec47907772b8302ca23b8a8a0b406c4e39e99f47 (diff) | |
parent | e0e9a54a325da2f5648fdb6f429f22a6c12a5fb3 (diff) | |
download | rtmux-3a6beea06460826a89b43bdc85270973105e47ff.tar.gz rtmux-3a6beea06460826a89b43bdc85270973105e47ff.tar.bz2 rtmux-3a6beea06460826a89b43bdc85270973105e47ff.zip |
Merge branch 'obsd-master'
Diffstat (limited to 'grid.c')
-rw-r--r-- | grid.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |