mirror of
https://codeberg.org/dnkl/foot.git
synced 2026-02-04 04:06:06 -05:00
csi: remove extra ‘;’
This commit is contained in:
parent
c0be074348
commit
ed47a65afc
1 changed files with 1 additions and 1 deletions
2
grid.c
2
grid.c
|
|
@ -39,7 +39,7 @@ grid_snapshot(const struct grid *grid)
|
|||
|
||||
clone_row->cells = xmalloc(grid->num_cols * sizeof(clone_row->cells[0]));
|
||||
clone_row->linebreak = row->linebreak;
|
||||
clone_row->dirty = row->dirty;;
|
||||
clone_row->dirty = row->dirty;
|
||||
|
||||
for (int c = 0; c < grid->num_cols; c++) {
|
||||
clone_row->cells[c] = row->cells[c];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue