aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2004-11-11 22:19:59 +0800
committerChristian Persch <chpe@src.gnome.org>2004-11-11 22:19:59 +0800
commit48436a86ce3d1ae80d1cec50244022d298a4dc9f (patch)
treefcd4fbb28321727ab4546e4e458d9b1dafb64bb4 /embed
parent2fda19d3c36dbc38f0494715c07f495ac75a90e0 (diff)
downloadgsoc2013-epiphany-48436a86ce3d1ae80d1cec50244022d298a4dc9f.tar
gsoc2013-epiphany-48436a86ce3d1ae80d1cec50244022d298a4dc9f.tar.gz
gsoc2013-epiphany-48436a86ce3d1ae80d1cec50244022d298a4dc9f.tar.bz2
gsoc2013-epiphany-48436a86ce3d1ae80d1cec50244022d298a4dc9f.tar.lz
gsoc2013-epiphany-48436a86ce3d1ae80d1cec50244022d298a4dc9f.tar.xz
gsoc2013-epiphany-48436a86ce3d1ae80d1cec50244022d298a4dc9f.tar.zst
gsoc2013-epiphany-48436a86ce3d1ae80d1cec50244022d298a4dc9f.zip
Fix signed/unsigned int confusion when iterating over a GPtrArray.
2004-11-11 Christian Persch <chpe@cvs.gnome.org> * embed/ephy-history.c: (remove_obsolete_pages): * src/bookmarks/ephy-bookmarks.c: (clear_favorites): Fix signed/unsigned int confusion when iterating over a GPtrArray.
Diffstat (limited to 'embed')
-rw-r--r--embed/ephy-history.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/ephy-history.c b/embed/ephy-history.c
index 3b19776cf..52603d82b 100644
--- a/embed/ephy-history.c
+++ b/embed/ephy-history.c
@@ -231,7 +231,7 @@ remove_obsolete_pages (EphyHistory *eb)
g_date_set_time (&current_date, time (NULL));
children = ephy_node_get_children (eb->priv->pages);
- for (i = children->len -1; i >= 0; i--)
+ for (i = (int) children->len - 1; i >= 0; i--)
{
EphyNode *kid;