From 191726dc57d587333a29914ac3dee508c01380d9 Mon Sep 17 00:00:00 2001 From: Daniel Carl Date: Fri, 13 Feb 2015 22:15:26 +0100 Subject: [PATCH] Fixed the code style a little. --- src/main.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/main.c b/src/main.c index 5438ee5..1fe02d5 100644 --- a/src/main.c +++ b/src/main.c @@ -1244,11 +1244,9 @@ static gboolean navigation_decision_requested_cb(WebKitWebView *view, char *uri; SoupMessage *msg = webkit_network_request_get_message(request); - /* - * manually reload the page for HSTS only when it occurs in - * the main-frame. the others cases are covered by requeueing. - */ - if ( webkit_web_view_get_main_frame(view) == frame ) { + /* manually reload the page for HSTS only when it occurs in + * the main-frame. the others cases are covered by requeueing. */ + if (webkit_web_view_get_main_frame(view) == frame) { uri = hsts_get_changed_uri(vb.session, msg); if (uri) { webkit_web_frame_load_uri(frame, uri); -- 2.20.1