Fix build. (whitespace issues)

Change-Id: I8453933a7ad4a5f2adcb29a9c746be843a743846
diff --git a/compiler/sea_ir/sea.cc b/compiler/sea_ir/sea.cc
index 9056935..99b21f8 100644
--- a/compiler/sea_ir/sea.cc
+++ b/compiler/sea_ir/sea.cc
@@ -705,8 +705,8 @@
 
   // SSA used-by:
   if (DotConversion::SaveUseEdges()) {
-    for (std::vector<InstructionNode*>::const_iterator cit = used_in_.begin(); cit != used_in_.end();
-        cit++) {
+    for (std::vector<InstructionNode*>::const_iterator cit = used_in_.begin();
+        cit != used_in_.end(); cit++) {
       result += (*cit)->StringId() + " -> " + StringId() + "[color=gray,label=\"";
       result += "\"] ; // SSA used-by edge\n";
     }
diff --git a/compiler/sea_ir/sea.h b/compiler/sea_ir/sea.h
index 040ad8a..5cb8424 100644
--- a/compiler/sea_ir/sea.h
+++ b/compiler/sea_ir/sea.h
@@ -43,7 +43,7 @@
   }
 
  private:
-  static const bool save_use_edges_ =  false; // TODO: Enable per-sea graph configuration.
+  static const bool save_use_edges_ =  false;  // TODO: Enable per-sea graph configuration.
 };
 
 class Region;