summaryrefslogtreecommitdiffstats
path: root/src/font.c
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-07-18 19:45:29 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-07-18 19:45:29 (EDT)
commit6f9fa656730b61384908e8ddbd11825eae3a92b9 (patch)
treecec556e492aac36ffde7832525da814481784f76 /src/font.c
parent373c9218245263fe986f4b93ef62cfa9af6c644b (diff)
Don't use libpng's pointer typedefs
Pointers should be as obvious as possible.
Diffstat (limited to 'src/font.c')
-rw-r--r--src/font.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/font.c b/src/font.c
index d333189..4db93ab 100644
--- a/src/font.c
+++ b/src/font.c
@@ -116,7 +116,7 @@ font_get_height(const struct font *font)
void
font_render(const struct font *font, png_const_colorp fg, png_const_colorp bg,
- unsigned char ch, png_bytepp rows, int row, int col)
+ unsigned char ch, png_byte **rows, int row, int col)
{
size_t y;
size_t r;