[gimp/metadata-browser] metadata: Change sign of data type
- From: Roman Joost <romanofski src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gimp/metadata-browser] metadata: Change sign of data type
- Date: Fri, 2 Dec 2011 02:24:17 +0000 (UTC)
commit 400b3711a4c74498aa799330bd3c540fba1097e8
Author: Mukund Sivaraman <muks banu com>
Date: Thu Oct 27 14:45:59 2011 +0530
metadata: Change sign of data type
plug-ins/metadata/xmp-parse.c | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/plug-ins/metadata/xmp-parse.c b/plug-ins/metadata/xmp-parse.c
index 2347bd1..143b0a1 100644
--- a/plug-ins/metadata/xmp-parse.c
+++ b/plug-ins/metadata/xmp-parse.c
@@ -1064,11 +1064,11 @@ text_handler (GMarkupParseContext *markup_context,
case STATE_INSIDE_ALT_LI_RSC_IMG:
{
- size_t len, max_size;
- gchar *decoded;
- gint decoded_size;
- gint state;
- guint save;
+ size_t len, max_size;
+ guchar *decoded;
+ gint decoded_size;
+ gint state;
+ guint save;
#ifdef DEBUG_XMP_PARSER
/* g_print ("XMP: Pushing text:\n%s\n", text); */
@@ -1103,7 +1103,7 @@ text_handler (GMarkupParseContext *markup_context,
size_p = g_new (gint, 1);
*size_p = decoded_size;
add_property_value (context, XMP_PTYPE_ALT_THUMBS,
- (char *) size_p, decoded);
+ (gchar *) size_p, (gchar *) decoded);
}
else
add_property_value (context, XMP_PTYPE_ALT_THUMBS, NULL, NULL);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]