[libgdata] core: Store the start index as an unsigned int in GDataQuery



commit 1cf698f8233f9a431a4b84cc4a69efbb125439b8
Author: Philip Withnall <philip tecnocode co uk>
Date:   Sat Nov 27 23:11:13 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 b70605b..c368bb8 100644
--- a/gdata/gdata-query.c
+++ b/gdata/gdata-query.c
@@ -62,7 +62,7 @@ struct _GDataQueryPrivate {
 	gint64 updated_max;
 	gint64 published_min;
 	gint64 published_max;
-	gint start_index;
+	guint start_index;
 	gboolean is_strict;
 	guint max_results;
 



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