[gimp] file-png: Fix some compiler warnings
- From: Mukund Sivaraman <muks src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp] file-png: Fix some compiler warnings
- Date: Fri, 10 May 2013 06:09:49 +0000 (UTC)
commit 2592f57df46f30b93e31f495c15772e07762521a
Author: Mukund Sivaraman <muks banu com>
Date: Fri May 10 11:37:14 2013 +0530
file-png: Fix some compiler warnings
plug-ins/common/file-png.c | 11 +++++++----
1 files changed, 7 insertions(+), 4 deletions(-)
---
diff --git a/plug-ins/common/file-png.c b/plug-ins/common/file-png.c
index 9da00ff..a7758c8 100644
--- a/plug-ins/common/file-png.c
+++ b/plug-ins/common/file-png.c
@@ -1139,7 +1139,8 @@ load_image (const gchar *filename,
{
png_uint_32 proflen;
- png_charp profname, profile;
+ png_charp profname;
+ png_bytep profile;
int profcomp;
if (png_get_iCCP (pp, info, &profname, &profcomp, &profile, &proflen))
@@ -1545,9 +1546,11 @@ save_image (const gchar *filename,
gimp_parasite_data_size (parasite),
"UTF-8", "ISO-8859-1", NULL, NULL, NULL);
- png_set_iCCP (pp, info,
- profile_name ? profile_name : "ICC profile", 0,
- (gchar *) gimp_parasite_data (profile_parasite),
+ png_set_iCCP (pp,
+ info,
+ profile_name ? profile_name : "ICC profile",
+ 0,
+ (guchar *) gimp_parasite_data (profile_parasite),
gimp_parasite_data_size (profile_parasite));
g_free (profile_name);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]