From 21d63c3542cb288d432bf6f491b623c3b7840487 Mon Sep 17 00:00:00 2001 From: Michael Drake Date: Wed, 23 Oct 2013 15:15:08 +0100 Subject: Pedantic wrap fix. --- content/fetch.c | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'content') diff --git a/content/fetch.c b/content/fetch.c index 6f829bb71..1ff925ae3 100644 --- a/content/fetch.c +++ b/content/fetch.c @@ -291,13 +291,16 @@ struct fetch * fetch_start(nsurl *url, nsurl *referer, */ bool match1; bool match2; - if (lwc_string_isequal(scheme, ref_scheme, &match) != lwc_error_ok) { + if (lwc_string_isequal(scheme, ref_scheme, + &match) != lwc_error_ok) { match = false; } - if (lwc_string_isequal(scheme, fetch_https_lwc, &match1) != lwc_error_ok) { + if (lwc_string_isequal(scheme, fetch_https_lwc, + &match1) != lwc_error_ok) { match1 = false; } - if (lwc_string_isequal(ref_scheme, fetch_http_lwc, &match2) != lwc_error_ok) { + if (lwc_string_isequal(ref_scheme, fetch_http_lwc, + &match2) != lwc_error_ok) { match2= false; } if (match == true || (match1 == true && match2 == true)) -- cgit v1.2.3