[glib] gmain: Fix some signed/unsigned integer comparisons
- From: Philip Withnall <pwithnall src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib] gmain: Fix some signed/unsigned integer comparisons
- Date: Thu, 25 Sep 2014 12:59:51 +0000 (UTC)
commit eaca86801e1ae149559ec1575cac4ef4813a255e
Author: Philip Withnall <philip withnall collabora co uk>
Date: Thu Sep 25 09:51:00 2014 +0100
gmain: Fix some signed/unsigned integer comparisons
Just to shut gcc up.
https://bugzilla.gnome.org/show_bug.cgi?id=737338
glib/gmain.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/glib/gmain.c b/glib/gmain.c
index 30fac70..71c816b 100644
--- a/glib/gmain.c
+++ b/glib/gmain.c
@@ -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;
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]