]> git.armaanb.net Git - chorizo.git/commitdiff
Code style nitpicking
authorPeter Hofmann <scm@uninformativ.de>
Thu, 27 Apr 2017 16:19:44 +0000 (18:19 +0200)
committerPeter Hofmann <scm@uninformativ.de>
Thu, 27 Apr 2017 16:19:44 +0000 (18:19 +0200)
browser.c

index 2903f97a32c22c846c27626b1f0876ca6ceb355a..19c69849a4dc202c57ba40c75fe4d31b65070627 100644 (file)
--- a/browser.c
+++ b/browser.c
@@ -322,7 +322,8 @@ changed_load_progress(GObject *obj, GParamSpec *pspec, gpointer data)
     gdouble p;
 
     p = webkit_web_view_get_estimated_load_progress(WEBKIT_WEB_VIEW(c->web_view));
-    if (p == 1) p = 0;
+    if (p == 1)
+        p = 0;
     gtk_entry_set_progress_fraction(GTK_ENTRY(c->location), p);
 }