Fix indentation.

Change-Id: Ibd7a20bd3e943b13499b084eefa7ec66bef66bb6
diff --git a/libminijail.c b/libminijail.c
index 00a4344..b5a2ce1 100644
--- a/libminijail.c
+++ b/libminijail.c
@@ -1153,16 +1153,16 @@
 		pdie("setns(CLONE_NEWNS)");
 
 	if (j->flags.vfs) {
-          if (unshare(CLONE_NEWNS))
-            pdie("unshare(vfs)");
-          /*
-           * Remount all filesystems as private. If they are shared
-           * new bind mounts will creep out of our namespace.
-           * https://www.kernel.org/doc/Documentation/filesystems/sharedsubtree.txt
-           */
-          if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL))
-            pdie("mount(/, private)");
-        }
+		if (unshare(CLONE_NEWNS))
+			pdie("unshare(vfs)");
+		/*
+		 * Remount all filesystems as private. If they are shared
+		 * new bind mounts will creep out of our namespace.
+		 * https://www.kernel.org/doc/Documentation/filesystems/sharedsubtree.txt
+		 */
+		if (mount(NULL, "/", NULL, MS_REC | MS_PRIVATE, NULL))
+			pdie("mount(/, private)");
+	}
 
 	if (j->flags.ipc && unshare(CLONE_NEWIPC)) {
 		pdie("unshare(ipc)");