summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorOle Loots <ole@monochrom.net>2012-12-21 14:14:38 +0100
committerOle Loots <ole@monochrom.net>2012-12-21 14:14:38 +0100
commit5b6a910e0936d5a78ad826ed57ef203f186abcca (patch)
tree458e08931211cc291a655ba7a9fd6c7d1a78ad5c /content
parent11399e18b29455a2e93a58f434844cd66974e6e8 (diff)
downloadnetsurf-5b6a910e0936d5a78ad826ed57ef203f186abcca.tar.gz
netsurf-5b6a910e0936d5a78ad826ed57ef203f186abcca.tar.bz2
Removed unused variable
Diffstat (limited to 'content')
-rw-r--r--content/fetchers/about.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/fetchers/about.c b/content/fetchers/about.c
index a7e289e38..4993414eb 100644
--- a/content/fetchers/about.c
+++ b/content/fetchers/about.c
@@ -342,7 +342,7 @@ static bool fetch_about_config_handler(struct fetch_about_context *ctx)
int opt = 0;
post_item = ctx->post_multipart;
while (post_item != NULL) {
- bool s = nsoption_set_key(post_item->name, post_item->value);
+ nsoption_set_key(post_item->name, post_item->value);
post_item = post_item->next;
}
}