summaryrefslogtreecommitdiff
path: root/content/fetchers/about.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@netsurf-browser.org>2013-05-27 00:32:08 +0100
committerVincent Sanders <vince@netsurf-browser.org>2013-05-28 14:16:11 +0100
commit1502b08925c227152c3064b221af7a5659ac00cc (patch)
tree05f1e032db9ca2e4ba7f57783c639c64a15f873e /content/fetchers/about.c
parentea0f541309cc7d3251c62cf02841bd8fcb2c2571 (diff)
downloadnetsurf-1502b08925c227152c3064b221af7a5659ac00cc.tar.gz
netsurf-1502b08925c227152c3064b221af7a5659ac00cc.tar.bz2
move option init out of netsurf_init
Diffstat (limited to 'content/fetchers/about.c')
-rw-r--r--content/fetchers/about.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/content/fetchers/about.c b/content/fetchers/about.c
index 85723e86a..ee2ea5477 100644
--- a/content/fetchers/about.c
+++ b/content/fetchers/about.c
@@ -334,9 +334,10 @@ static bool fetch_about_config_handler(struct fetch_about_context *ctx)
"<tr><th></th><th></th><th></th></tr>\n");
do {
- res = nsoption_snoptionf(buffer + slen, sizeof buffer - slen,
- opt_loop,
- "<tr><th>%k</th><td>%t</td><td>%V</td></tr>\n");
+ res = nsoption_snoptionf(buffer + slen,
+ sizeof buffer - slen,
+ opt_loop,
+ "<tr><th>%k</th><td>%t</td><td>%V</td></tr>\n");
if (res <= 0)
break; /* last option */