From 898cef614cb5901ed35e1b9da2eb483b038a7e60 Mon Sep 17 00:00:00 2001 From: Rudolf Polzer Date: Mon, 23 Jan 2012 18:18:01 +0100 Subject: [PATCH] fix type cast --- plugins/imagepng/plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/imagepng/plugin.cpp b/plugins/imagepng/plugin.cpp index 05aea74b..9d1a3e35 100644 --- a/plugins/imagepng/plugin.cpp +++ b/plugins/imagepng/plugin.cpp @@ -87,7 +87,7 @@ Image* LoadPNGBuff (unsigned char* fbuffer) } // configure the read function - png_set_read_fn(png_ptr, (voidp)&p_fbuffer, (png_rw_ptr)&user_read_data); + png_set_read_fn(png_ptr, (png_voidp)&p_fbuffer, (png_rw_ptr)&user_read_data); if (setjmp(png_jmpbuf(png_ptr))) { png_destroy_read_struct(&png_ptr, &info_ptr, -- 2.39.2