summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2013-10-23 15:15:08 +0100
committerMichael Drake <tlsa@netsurf-browser.org>2013-10-23 15:15:08 +0100
commit21d63c3542cb288d432bf6f491b623c3b7840487 (patch)
tree946e34bb96fb04a5ac1d001c3230797ce1f762a2 /content
parent9ea65f652a4526d4dfa69f79fbe14f1c196d3cd4 (diff)
downloadnetsurf-21d63c3542cb288d432bf6f491b623c3b7840487.tar.gz
netsurf-21d63c3542cb288d432bf6f491b623c3b7840487.tar.bz2
Pedantic wrap fix.
Diffstat (limited to 'content')
-rw-r--r--content/fetch.c9
1 files changed, 6 insertions, 3 deletions
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))