mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-01-24 21:16:15 +01:00
gmain: Fix some signed/unsigned integer comparisons
Just to shut gcc up. https://bugzilla.gnome.org/show_bug.cgi?id=737338
This commit is contained in:
parent
42d0dc363e
commit
eaca86801e
@ -514,7 +514,7 @@ g_main_context_unref (GMainContext *context)
|
||||
GSource *source;
|
||||
GList *sl_iter;
|
||||
GSourceList *list;
|
||||
gint i;
|
||||
guint i;
|
||||
|
||||
g_return_if_fail (context != NULL);
|
||||
g_return_if_fail (g_atomic_int_get (&context->ref_count) > 0);
|
||||
@ -3327,7 +3327,7 @@ gboolean
|
||||
g_main_context_prepare (GMainContext *context,
|
||||
gint *priority)
|
||||
{
|
||||
gint i;
|
||||
guint i;
|
||||
gint n_ready = 0;
|
||||
gint current_priority = G_MAXINT;
|
||||
GSource *source;
|
||||
|
Loading…
Reference in New Issue
Block a user