Fix indentation

003faedb4a571d2e1dc8ff623cc151beeb30f7fa had incorrect indentation,
this change fixes it.

BUG=none
TEST=builds

Change-Id: I5c584491cb2b83d5e40eb50a7e3560f3736fbc51
Reviewed-on: https://chromium-review.googlesource.com/228253
Reviewed-by: Stéphane Marchesin <marcheu@chromium.org>
Commit-Queue: Stéphane Marchesin <marcheu@chromium.org>
Tested-by: Stéphane Marchesin <marcheu@chromium.org>
diff --git a/splash.c b/splash.c
index 72a1618..74e45cd 100644
--- a/splash.c
+++ b/splash.c
@@ -221,7 +221,7 @@
 		}
 	}
 
-  // Let chrome know it's ok to take drmMaster
+	/* Let chrome know it's ok to take drmMaster */
 	(void)dbus_method_call0(splash->dbus,
 		kLibCrosServiceName,
 		kLibCrosServicePath,
diff --git a/term.c b/term.c
index 97eefdc..76de3f1 100644
--- a/term.c
+++ b/term.c
@@ -223,12 +223,12 @@
 			case KEY_F1:
 				input_ungrab();
 				terminal->active = false;
-        (void)dbus_method_call0(terminal->dbus,
-          kLibCrosServiceName,
-          kLibCrosServicePath,
-          kLibCrosServiceInterface,
-          kTakeDisplayOwnership);
-        break;
+				(void)dbus_method_call0(terminal->dbus,
+					kLibCrosServiceName,
+					kLibCrosServicePath,
+					kLibCrosServiceInterface,
+					kTakeDisplayOwnership);
+				break;
 			case KEY_F2:
 			case KEY_F3:
 			case KEY_F4:
@@ -238,21 +238,21 @@
 			case KEY_F8:
 			case KEY_F9:
 			case KEY_F10:
-        (void)dbus_method_call0(terminal->dbus,
-          kLibCrosServiceName,
-          kLibCrosServicePath,
-          kLibCrosServiceInterface,
-          kReleaseDisplayOwnership);
-          break;
+				(void)dbus_method_call0(terminal->dbus,
+					kLibCrosServiceName,
+					kLibCrosServicePath,
+					kLibCrosServiceInterface,
+					kReleaseDisplayOwnership);
+				break;
 		}
 
-    if (ev->code == KEY_F2) {
-      terminal->active = true;
-      input_grab();
-      video_setmode(terminal->video);
-      term_redraw(terminal);
-    }
-    return 1;
+		if (ev->code == KEY_F2) {
+			terminal->active = true;
+			input_grab();
+			video_setmode(terminal->video);
+			term_redraw(terminal);
+		}
+		return 1;
 
 	}