aboutsummaryrefslogtreecommitdiffstats
path: root/src
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 /src
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 'src')
-rw-r--r--src/bookmarks/ephy-bookmarks.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bookmarks/ephy-bookmarks.c b/src/bookmarks/ephy-bookmarks.c
index cc2a66443..0a94a8f16 100644
--- a/src/bookmarks/ephy-bookmarks.c
+++ b/src/bookmarks/ephy-bookmarks.c
@@ -458,7 +458,7 @@ clear_favorites (EphyBookmarks *bookmarks)
node = bookmarks->priv->favorites;
children = ephy_node_get_children (node);
- for (i = children->len - 1; i >= 0; i--)
+ for (i = (int) children->len - 1; i >= 0; i--)
{
EphyNode *kid;