stick to gint/guint rather than int32_t/uint32_t

This commit is contained in:
Chris Eagle
2016-12-19 09:43:35 -08:00
parent 5690b7b68f
commit 71bda8e012
4 changed files with 20 additions and 19 deletions

View File

@ -119,7 +119,7 @@ static inline GList *g_list_insert_sorted_merged(GList *list,
return list;
}
static inline int32_t range_compare(gconstpointer a, gconstpointer b)
static inline gint range_compare(gconstpointer a, gconstpointer b)
{
Range *ra = (Range *)a, *rb = (Range *)b;
if (ra->begin == rb->begin && ra->end == rb->end) {