From 6f9fa656730b61384908e8ddbd11825eae3a92b9 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Thu, 18 Jul 2019 19:45:29 -0400 Subject: Don't use libpng's pointer typedefs Pointers should be as obvious as possible. --- (limited to 'src/image.c') 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); -- cgit v0.9.1