summaryrefslogtreecommitdiff
path: root/desktop/netsurf.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-01-19 18:17:32 +0000
committerVincent Sanders <vince@kyllikki.org>2014-01-19 21:18:47 +0000
commit4987a3a8a7baccf0fe546c5ff8ff02c6f769d439 (patch)
tree770b71cbcc04214961e9c44d7775a50dc873c93e /desktop/netsurf.c
parent977ae8efc6cc543d98ac8c5261b32cb348dbb47e (diff)
downloadnetsurf-4987a3a8a7baccf0fe546c5ff8ff02c6f769d439.tar.gz
netsurf-4987a3a8a7baccf0fe546c5ff8ff02c6f769d439.tar.bz2
remove forward refs from content/fetch.c and cleanup doc comments
Diffstat (limited to 'desktop/netsurf.c')
-rw-r--r--desktop/netsurf.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index d294073ba..76da91a89 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -210,7 +210,10 @@ nserror netsurf_init(const char *messages, struct gui_table *gt)
setlocale(LC_ALL, "C");
- fetch_init();
+ /* initialise the fetchers */
+ error = fetch_init();
+ if (error != NSERROR_OK)
+ return error;
/* Initialise the hlcache and allow it to init the llcache for us */
hlcache_initialise(&hlcache_parameters);