Style nits and a missing cast.

This commit is contained in:
nicm
2017-04-19 12:44:29 +00:00
parent fa6deb5866
commit 689f4bfac2
3 changed files with 3 additions and 3 deletions

2
grid.c
View File

@ -89,7 +89,7 @@ grid_need_extended_cell(const struct grid_cell_entry *gce,
return (1);
if (gc->data.size != 1 || gc->data.width != 1)
return (1);
if ((gc->fg & COLOUR_FLAG_RGB) ||(gc->bg & COLOUR_FLAG_RGB))
if ((gc->fg & COLOUR_FLAG_RGB) || (gc->bg & COLOUR_FLAG_RGB))
return (1);
return (0);
}