[libgdata/libgdata-0-6] core: Store the start index as an unsigned int in GDataQuery



commit 548eae618bf2d6cb3a572c908840b90d3cb6dd2b
Author: Philip Withnall <philip tecnocode co uk>
Date:   Sat Nov 27 23:12:36 2010 +0000

    core: Store the start index as an unsigned int in GDataQuery
    
    The external interface was accepting unsigned values, but was storing them
    as signed internally.

 gdata/gdata-query.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gdata/gdata-query.c b/gdata/gdata-query.c
index 71b9393..f659eb1 100644
--- a/gdata/gdata-query.c
+++ b/gdata/gdata-query.c
@@ -79,7 +79,7 @@ struct _GDataQueryPrivate {
 	GTimeVal updated_max;
 	GTimeVal published_min;
 	GTimeVal published_max;
-	gint start_index;
+	guint start_index;
 	gboolean is_strict;
 	guint max_results;
 	gchar *entry_id;



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]