diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2004-11-25 22:45:12 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2004-11-25 22:45:12 +0800 |
commit | e0b14f264936aa2b060abb8190d47e68fe265ba3 (patch) | |
tree | 0271fa8e7a955e118790b5547e82faea2df7edbf /src/prefs-dialog.c | |
parent | 7ee1915ef8101e1cac5b9a2d5c858aac371d6367 (diff) | |
download | gsoc2013-epiphany-e0b14f264936aa2b060abb8190d47e68fe265ba3.tar gsoc2013-epiphany-e0b14f264936aa2b060abb8190d47e68fe265ba3.tar.gz gsoc2013-epiphany-e0b14f264936aa2b060abb8190d47e68fe265ba3.tar.bz2 gsoc2013-epiphany-e0b14f264936aa2b060abb8190d47e68fe265ba3.tar.lz gsoc2013-epiphany-e0b14f264936aa2b060abb8190d47e68fe265ba3.tar.xz gsoc2013-epiphany-e0b14f264936aa2b060abb8190d47e68fe265ba3.tar.zst gsoc2013-epiphany-e0b14f264936aa2b060abb8190d47e68fe265ba3.zip |
Fix compile in the !HAVE_ISO_CODES case.
2004-11-25 Christian Persch <chpe@cvs.gnome.org>
* src/prefs-dialog.c: (create_language_section):
Fix compile in the !HAVE_ISO_CODES case.
Diffstat (limited to 'src/prefs-dialog.c')
-rw-r--r-- | src/prefs-dialog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/prefs-dialog.c b/src/prefs-dialog.c index f8a863d1a..f47c7474c 100644 --- a/src/prefs-dialog.c +++ b/src/prefs-dialog.c @@ -1367,7 +1367,7 @@ create_language_section (EphyDialog *dialog) #else /* !HAVE_ISO_CODES */ - int i; + int i, n_languages = G_N_ELEMENTS (languages); for (i = 0; i < n_languages; i++) { |