summaryrefslogtreecommitdiffstats
path: root/src/font.h
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-07-18 02:37:53 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-07-18 02:37:53 (EDT)
commitf0351693ac1558505cf15c61c3ea4a1f12c3d67b (patch)
treeb0e82273776e0ec9db8a904e4a9f2b1c7d529b00 /src/font.h
parent0b9687372282752f586af875f688d634648a5fda (diff)
text_*(), font_*(), sgr(): Convert to unsigned char
Diffstat (limited to 'src/font.h')
-rw-r--r--src/font.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/font.h b/src/font.h
index ee3942e..f82f2a0 100644
--- a/src/font.h
+++ b/src/font.h
@@ -37,6 +37,6 @@ font_get_height(struct font *font) __attribute__((pure));
void
font_render(struct font *font, png_const_colorp fg, png_const_colorp bg,
- char ch, png_bytepp rows, int row, int col);
+ unsigned char ch, png_bytepp rows, int row, int col);
#endif /* FONT_H_ */