Correct formatting in util/posix/signals_test.cc

Change-Id: Ic1e44d931479068ef575f3628ec7726bbca192e3
Reviewed-on: https://chromium-review.googlesource.com/c/crashpad/crashpad/+/3223541
Reviewed-by: Mark Mentovai <mark@chromium.org>
Commit-Queue: Justin Cohen <justincohen@chromium.org>
GitOrigin-RevId: 02d50376a7fb51c91139f93a9f1e28bd88f5e43b
diff --git a/util/posix/signals_test.cc b/util/posix/signals_test.cc
index 09f49ad..2bd5580 100644
--- a/util/posix/signals_test.cc
+++ b/util/posix/signals_test.cc
@@ -42,9 +42,7 @@
 
 // Keep synchronized with CauseSignal().
 bool CanCauseSignal(int sig) {
-  return sig == SIGABRT ||
-         sig == SIGALRM ||
-         sig == SIGBUS ||
+  return sig == SIGABRT || sig == SIGALRM || sig == SIGBUS ||
 /* According to DDI0487D (Armv8 Architecture Reference Manual) the expected
  * behavior for division by zero (Section 3.4.8) is: "... results in a
  * zero being written to the destination register, without any
@@ -58,8 +56,7 @@
 #if defined(ARCH_CPU_X86_FAMILY) || defined(ARCH_CPU_ARMEL)
          sig == SIGILL ||
 #endif  // defined(ARCH_CPU_X86_FAMILY) || defined(ARCH_CPU_ARMEL)
-         sig == SIGPIPE ||
-         sig == SIGSEGV ||
+         sig == SIGPIPE || sig == SIGSEGV ||
 #if defined(OS_APPLE)
          sig == SIGSYS ||
 #endif  // OS_APPLE