summaryrefslogtreecommitdiffstats
path: root/src/image.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/image.c
parent373c9218245263fe986f4b93ef62cfa9af6c644b (diff)
Don't use libpng's pointer typedefs
Pointers should be as obvious as possible.
Diffstat (limited to 'src/image.c')
-rw-r--r--src/image.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/image.c b/src/image.c
index 626ffa7..a794d16 100644
--- a/src/image.c
+++ b/src/image.c
@@ -87,7 +87,7 @@ image_render(struct image *image, const struct text *text,
{
size_t width;
size_t height;
- png_bytepp rows;
+ png_byte **rows;
size_t i;
assert(image);