Minor bits: fix an array size, add comment, make grid_cell_entry static.

This commit is contained in:
nicm
2017-02-22 09:01:32 +00:00
parent 8a0b279c31
commit 0414b1fc78
3 changed files with 3 additions and 2 deletions

2
grid.c
View File

@ -39,7 +39,7 @@
const struct grid_cell grid_default_cell = {
0, 0, 8, 8, { { ' ' }, 0, 1, 1 }
};
const struct grid_cell_entry grid_default_entry = {
static const struct grid_cell_entry grid_default_entry = {
0, { .data = { 0, 8, 8, ' ' } }
};