aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Hoffmann <kraxel@redhat.com>2011-01-26 14:56:27 +0100
committerGerd Hoffmann <kraxel@redhat.com>2011-01-26 14:56:27 +0100
commit966deabf1507743e15cae315d13d51f7da7b68f3 (patch)
tree3a67a254429c432ca5b076f4315b8f6a0de76274
parentecc91c35b0c1c672f3a89865eb9c5e240ad5b0ef (diff)
downloadfbida-966deabf1507743e15cae315d13d51f7da7b68f3.tar.gz
fix to build with libpng 1.4
Thanks to Sean Robinson.
-rw-r--r--rd/read-png.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/rd/read-png.c b/rd/read-png.c
index 92e7b4a..990ce7e 100644
--- a/rd/read-png.c
+++ b/rd/read-png.c
@@ -69,7 +69,7 @@ png_init(FILE *fp, char *filename, unsigned int page,
if (h->color_type == PNG_COLOR_TYPE_PALETTE)
png_set_palette_to_rgb(h->png);
if (h->color_type == PNG_COLOR_TYPE_GRAY && bit_depth < 8)
- png_set_gray_1_2_4_to_8(h->png);
+ png_set_expand_gray_1_2_4_to_8(h->png);
if (png_get_bKGD(h->png, h->info, &file_bg)) {
png_set_background(h->png,file_bg,PNG_BACKGROUND_GAMMA_FILE,1,1.0);