summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2004-07-18 22:58:40 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2004-07-18 22:58:40 +0000
commit45ea97d75028113da4b49a2160ac4cc72f27ec7b (patch)
treea35716d0e0c5a152aa313873aa8c4e0d71ccd49c
parentc4b561e841fecfccd234be3292e23978f4d2da89 (diff)
downloadnetsurf-45ea97d75028113da4b49a2160ac4cc72f27ec7b.tar.gz
netsurf-45ea97d75028113da4b49a2160ac4cc72f27ec7b.tar.bz2
[project @ 2004-07-18 22:58:40 by jmb]
Remove unused variable from gui_init. Correctly apostrophise don't before Chocky complains. svn path=/import/netsurf/; revision=1101
-rw-r--r--riscos/gui.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/riscos/gui.c b/riscos/gui.c
index 20d360283..0d374148f 100644
--- a/riscos/gui.c
+++ b/riscos/gui.c
@@ -160,7 +160,6 @@ void gui_init(int argc, char** argv)
{
char path[40];
char theme_fname[256];
- char url[80];
os_error *error;
int length;
@@ -168,7 +167,7 @@ void gui_init(int argc, char** argv)
save_complete_init();
- /* We dont have the universal boot sequence on NCOS */
+ /* We don't have the universal boot sequence on NCOS */
#ifndef ncos
options_read("Choices:WWW.NetSurf.Choices");
#else
@@ -201,7 +200,7 @@ void gui_init(int argc, char** argv)
die(error->errmess);
}
- /* We dont need to check the fonts on NCOS */
+ /* We don't need to check the fonts on NCOS */
#ifndef ncos
ro_gui_check_fonts();
#endif
@@ -244,7 +243,7 @@ void gui_init(int argc, char** argv)
ro_gui_pointers_init();
ro_gui_hotlist_init();
- /* We dont create an Iconbar icon on NCOS */
+ /* We don't create an Iconbar icon on NCOS */
#ifndef ncos
ro_gui_icon_bar_create();
#endif