csi: remove extra ‘;’

This commit is contained in:
Daniel Eklöf 2021-02-26 09:25:17 +01:00
parent c0be074348
commit ed47a65afc
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

2
grid.c
View file

@ -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];