summaryrefslogtreecommitdiffstats
path: root/src/text.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/text.c
parent373c9218245263fe986f4b93ef62cfa9af6c644b (diff)
Don't use libpng's pointer typedefs
Pointers should be as obvious as possible.
Diffstat (limited to 'src/text.c')
-rw-r--r--src/text.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/text.c b/src/text.c
index b288043..358aee7 100644
--- a/src/text.c
+++ b/src/text.c
@@ -150,7 +150,7 @@ text_set_height(struct text *text, size_t height)
}
void
-text_render(const struct text *text, const struct font *font, png_bytepp rows)
+text_render(const struct text *text, const struct font *font, png_byte **rows)
{
unsigned char *string_start;
unsigned char *string;