1 From a0f23e1706b34bca6a65183040d1f1498cce2a50 Mon Sep 17 00:00:00 2001
2 From: Matthias Clasen <mclasen@redhat.com>
3 Date: Thu, 25 Mar 2010 04:55:15 +0000
4 Subject: Fix a 64bit issue
6 Thank you libpng, for typedef unsigned long png_uint_32.
8 diff --git a/gdk-pixbuf/io-png.c b/gdk-pixbuf/io-png.c
9 index c0374ca..43db70a 100644
10 --- a/gdk-pixbuf/io-png.c
11 +++ b/gdk-pixbuf/io-png.c
12 @@ -261,7 +261,7 @@ gdk_pixbuf__png_image_load (FILE *f, GError **error)
13 gchar *icc_profile_base64;
14 const gchar *icc_profile_title;
15 const gchar *icc_profile;
16 - guint icc_profile_size;
17 + gulong icc_profile_size;
19 gint compression_type;
21 @@ -607,7 +607,7 @@ png_info_callback (png_structp png_read_ptr,
22 gchar *icc_profile_base64;
23 const gchar *icc_profile_title;
24 const gchar *icc_profile;
25 - guint icc_profile_size;
26 + gulong icc_profile_size;
28 gint compression_type;