fix up some irregular indentation

R=rsc
OCL=33382
CL=33391
diff --git a/test/varinit.go b/test/varinit.go
index a494100..004f9c0 100644
--- a/test/varinit.go
+++ b/test/varinit.go
@@ -7,14 +7,14 @@
 package main
 
 func main() {
-   var x int = 1;
-   if x != 1 { panic("found ", x, ", expected 1\n"); }
-   {
-	   var x int = x + 1;
-	   if x != 2 { panic("found ", x, ", expected 2\n"); }
-   }
-   {
-	   x := x + 1;
-	   if x != 2 { panic("found ", x, ", expected 2\n"); }
-   }
+	var x int = 1;
+	if x != 1 { panic("found ", x, ", expected 1\n"); }
+	{
+		var x int = x + 1;
+		if x != 2 { panic("found ", x, ", expected 2\n"); }
+	}
+	{
+		x := x + 1;
+		if x != 2 { panic("found ", x, ", expected 2\n"); }
+	}
 }