From 4987a3a8a7baccf0fe546c5ff8ff02c6f769d439 Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Sun, 19 Jan 2014 18:17:32 +0000 Subject: remove forward refs from content/fetch.c and cleanup doc comments --- desktop/netsurf.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'desktop/netsurf.c') 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); -- cgit v1.2.3