From: Daniel Carl Date: Fri, 13 Feb 2015 21:15:26 +0000 (+0100) Subject: Fixed the code style a little. X-Git-Url: https://git.owens.tech/assets/static/gitweb.css/assets/static/gitweb.css/git?a=commitdiff_plain;h=191726dc57d587333a29914ac3dee508c01380d9;p=vimb.git Fixed the code style a little. --- 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);