[Telepathy-commits] [telepathy-idle/master] Fix a mismatched signedness warning
Will Thompson
will.thompson at collabora.co.uk
Wed Sep 24 02:47:05 PDT 2008
---
src/idle-connection.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/src/idle-connection.c b/src/idle-connection.c
index da02f04..4f878f3 100644
--- a/src/idle-connection.c
+++ b/src/idle-connection.c
@@ -894,7 +894,7 @@ static void idle_connection_request_aliases(TpSvcConnectionInterfaceAliasing *if
}
const gchar **aliases = g_new0(const gchar *, handles->len + 1);
- for (int i = 0; i < handles->len; i++) {
+ for (guint i = 0; i < handles->len; i++) {
TpHandle handle = g_array_index(handles, TpHandle, i);
const gchar *alias = tp_handle_get_qdata(repo, handle, _canon_nick_quark());
--
1.5.6.5
More information about the Telepathy-commits
mailing list