diff options
author | Thomas Adam <thomas@xteddy.org> | 2018-06-11 13:02:25 +0100 |
---|---|---|
committer | Thomas Adam <thomas@xteddy.org> | 2018-06-11 13:02:25 +0100 |
commit | 9da78d72de478c1ea2e8d0fc3a8efa06cfaaeaf7 (patch) | |
tree | 0c8e4c18db4c4395a193f6559ed2b35ae7450220 | |
parent | 54c2d48d7dc6c7d7570b74682ad7914bc4915b8c (diff) | |
parent | d0c992306d4a01804d3649648f8a1ef59cdda351 (diff) | |
download | rtmux-9da78d72de478c1ea2e8d0fc3a8efa06cfaaeaf7.tar.gz rtmux-9da78d72de478c1ea2e8d0fc3a8efa06cfaaeaf7.tar.bz2 rtmux-9da78d72de478c1ea2e8d0fc3a8efa06cfaaeaf7.zip |
Merge branch 'obsd-master'
-rw-r--r-- | grid.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -984,9 +984,9 @@ static void grid_reflow_join(struct grid *target, struct grid *gd, u_int sx, u_int yy, u_int width, u_int *cy, int already) { - struct grid_line *gl, *from; + struct grid_line *gl, *from = NULL; struct grid_cell gc; - u_int lines, want, left, i, to, line; + u_int lines, left, i, to, line, want = 0; u_int at; int wrapped = 1; |