diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-10-22 00:58:06 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-10-22 17:43:50 +0800 |
commit | d5a1765f414f04f81922603af16f18d7c84f87a0 (patch) | |
tree | 2bfea884542a0c9c0c3bd1a0bfe3315ef4a7eed3 /libempathy/empathy-account-settings.c | |
parent | 5f6e2d5c91cf79cdcec6de941db2393563bb0f82 (diff) | |
download | gsoc2013-empathy-d5a1765f414f04f81922603af16f18d7c84f87a0.tar gsoc2013-empathy-d5a1765f414f04f81922603af16f18d7c84f87a0.tar.gz gsoc2013-empathy-d5a1765f414f04f81922603af16f18d7c84f87a0.tar.bz2 gsoc2013-empathy-d5a1765f414f04f81922603af16f18d7c84f87a0.tar.lz gsoc2013-empathy-d5a1765f414f04f81922603af16f18d7c84f87a0.tar.xz gsoc2013-empathy-d5a1765f414f04f81922603af16f18d7c84f87a0.tar.zst gsoc2013-empathy-d5a1765f414f04f81922603af16f18d7c84f87a0.zip |
empathy-account-settings.c: fix uint comparaison
Diffstat (limited to 'libempathy/empathy-account-settings.c')
-rw-r--r-- | libempathy/empathy-account-settings.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libempathy/empathy-account-settings.c b/libempathy/empathy-account-settings.c index 5069691a2..0acc8006f 100644 --- a/libempathy/empathy-account-settings.c +++ b/libempathy/empathy-account-settings.c @@ -320,7 +320,7 @@ empathy_account_settings_free_unset_parameters ( EmpathyAccountSettings *settings) { EmpathyAccountSettingsPriv *priv = GET_PRIV (settings); - int i; + guint i; for (i = 0 ; i < priv->unset_parameters->len; i++) g_free (g_array_index (priv->unset_parameters, gchar *, i)); @@ -520,7 +520,7 @@ empathy_account_settings_is_unset (EmpathyAccountSettings *settings, { EmpathyAccountSettingsPriv *priv = GET_PRIV (settings); GArray *a; - int i; + guint i; a = priv->unset_parameters; @@ -557,7 +557,7 @@ account_settings_remove_from_unset (EmpathyAccountSettings *settings, const gchar *param) { EmpathyAccountSettingsPriv *priv = GET_PRIV (settings); - int idx; + guint idx; gchar *val; for (idx = 0; idx < priv->unset_parameters->len; idx++) @@ -1240,7 +1240,7 @@ gboolean empathy_account_settings_is_valid (EmpathyAccountSettings *settings) { EmpathyAccountSettingsPriv *priv; - int idx; + guint idx; gchar *current; gboolean missed = FALSE; |