A quick periodic indent
diff --git a/linux/arch.c b/linux/arch.c
index d943d51..83c597b 100644
--- a/linux/arch.c
+++ b/linux/arch.c
@@ -250,7 +250,8 @@
 
     for (;;) {
         int status;
-        pid_t pid = TEMP_FAILURE_RETRY(wait4(childPid, &status, __WNOTHREAD | __WALL | WUNTRACED, NULL));
+        pid_t pid =
+            TEMP_FAILURE_RETRY(wait4(childPid, &status, __WNOTHREAD | __WALL | WUNTRACED, NULL));
         if (pid == -1 && errno == EINTR) {
             continue;
         }
@@ -273,8 +274,8 @@
     for (;;) {
         int status;
 
-    // wait3 syscall is no longer present in Android
-    // wrap syscalls under TEMP_FAILURE_RETRY macro to avoid "Interrupted system call"
+        // wait3 syscall is no longer present in Android
+        // wrap syscalls under TEMP_FAILURE_RETRY macro to avoid "Interrupted system call"
 #if !defined(__ANDROID__)
         pid_t pid = TEMP_FAILURE_RETRY(wait3(&status, __WNOTHREAD | __WALL, NULL));
 #else
@@ -293,7 +294,7 @@
         }
         if (pid == -1) {
 #if !defined(__ANDROID__)
-            LOGMSG_P(l_FATAL, "wait3() failed");  
+            LOGMSG_P(l_FATAL, "wait3() failed");
 #else
             LOGMSG_P(l_FATAL, "wait4() failed");
 #endif