From 3b36fb9d746a0dc9f8ccf0bff29a1fdbc31a946c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ekl=C3=B6f?= Date: Tue, 30 Jul 2019 20:18:20 +0200 Subject: [PATCH] render: last_cursor.cell must not be const --- terminal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminal.h b/terminal.h index a49f7bd5..8248dc3a 100644 --- a/terminal.h +++ b/terminal.h @@ -332,7 +332,7 @@ struct terminal { struct { struct coord actual; /* Absolute */ struct coord in_view; /* Offset by view */ - const struct cell *cell; /* For easy access to content */ + struct cell *cell; /* For easy access to content */ } last_cursor; struct buffer *last_buf; /* Buffer we rendered to last time */