aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ugrid.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/ugrid.h')
-rw-r--r--src/nvim/ugrid.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/ugrid.h b/src/nvim/ugrid.h
index 54cd33e58f..8679769468 100644
--- a/src/nvim/ugrid.h
+++ b/src/nvim/ugrid.h
@@ -2,12 +2,12 @@
#include "nvim/types_defs.h"
-typedef struct ucell {
+typedef struct {
schar_T data;
sattr_T attr;
} UCell;
-typedef struct ugrid {
+typedef struct {
int row, col;
int width, height;
UCell **cells;