aboutsummaryrefslogtreecommitdiffstats
path: root/embed
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2003-07-15 20:33:56 +0800
committerChristian Persch <chpe@src.gnome.org>2003-07-15 20:33:56 +0800
commit945e7a58faa779fe69bac52fcdb130989ebe17d2 (patch)
treef3cfeb0c94827880d272fa26dd9e5b7d515de2b4 /embed
parentf33d96649a39b25ecdc33acf430be5edc0380270 (diff)
downloadgsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.tar
gsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.tar.gz
gsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.tar.bz2
gsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.tar.lz
gsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.tar.xz
gsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.tar.zst
gsoc2013-epiphany-945e7a58faa779fe69bac52fcdb130989ebe17d2.zip
Fix compiler warning.
2003-07-15 Christian Persch <chpe@cvs.gnome.org> * embed/mozilla/mozilla-embed-single.cpp: (impl_get_font_list): Fix compiler warning.
Diffstat (limited to 'embed')
-rw-r--r--embed/mozilla/mozilla-embed-single.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/embed/mozilla/mozilla-embed-single.cpp b/embed/mozilla/mozilla-embed-single.cpp
index ca2e4fd3f..0bc26d46c 100644
--- a/embed/mozilla/mozilla-embed-single.cpp
+++ b/embed/mozilla/mozilla-embed-single.cpp
@@ -807,7 +807,7 @@ impl_get_font_list (EphyEmbedSingle *shell,
&fontCount, &fontArray);
if (NS_FAILED (rv)) return G_FAILED;
- for (int i = 0; i < fontCount; i++)
+ for (PRUint32 i = 0; i < fontCount; i++)
{
char *gFontString;