static void dolookups(struct glyph const *);
static bool
-getpix(char const data[YSIZE], int x, int y, unsigned flags)
+getpix(char const data[YSIZE - 1], int x, int y, unsigned flags)
{
/*
* one pixel, and a right side-bearing of zero. Space
* characters get an advance width of three pixels.
*/
- for (i = 0; i < YSIZE; i++)
+ for (i = 0; i < YSIZE - 1; i++)
cols |= g->data[i] & ((1 << XSIZE) - 1);
if (cols == 0)
dh = 3 - XSIZE;