summaryrefslogtreecommitdiff
path: root/showfont.c
diff options
context:
space:
mode:
Diffstat (limited to 'showfont.c')
-rw-r--r--showfont.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/showfont.c b/showfont.c
index 4ba01a6..05895ac 100644
--- a/showfont.c
+++ b/showfont.c
@@ -258,10 +258,10 @@ show_glyphs(
}
offset = offsets[ch].position;
for (r = 0; r < bottom; r++) {
- unsigned char *row = glyphs + offset;
+ unsigned char *rowp = glyphs + offset;
for (b = 0; b < charwidth; b++) {
- putchar((row[b >> 3] &
+ putchar((rowp[b >> 3] &
(1 << (7 - (b & 7)))) ? '#' : '-');
}
putchar('\n');