From e7c5825378166a5ceeedd2b5b5168dd3866bb105 Mon Sep 17 00:00:00 2001
From: Zaki Manian <zaki@manian.org>
Date: Sat, 2 Sep 2017 14:20:22 -0700
Subject: [PATCH] Fix brace indentation

---
 clippy_lints/src/is_unit_expr.rs | 7 +++++--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/clippy_lints/src/is_unit_expr.rs b/clippy_lints/src/is_unit_expr.rs
index 63bdaaa5231..d62436dd80e 100644
--- a/clippy_lints/src/is_unit_expr.rs
+++ b/clippy_lints/src/is_unit_expr.rs
@@ -57,7 +57,8 @@ impl EarlyLintPass for UnitExpr {
                         "remove the last semicolon",
                         "TODO".to_owned()
                     )
-                }            }
+                }            
+            }
         }
         if let ExprKind::Call( _, ref args) = expr.node{
             for ref arg in args{
@@ -70,7 +71,9 @@ impl EarlyLintPass for UnitExpr {
                         "remove the last semicolon",
                         "TODO".to_owned()
                     )
-                }            }        }
+                }            
+            }        
+        }
     }
 
     fn check_stmt(&mut self, cx: &EarlyContext, stmt: &Stmt) {