[PA] Improve formatting (9 of N)

Change-Id: Ic7ad3d919643fe0d821d5eeb622c623558ae6008
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/4521369
Reviewed-by: Kalvin Lee <[email protected]>
Reviewed-by: Will Harris <[email protected]>
Auto-Submit: Bartek Nowierski <[email protected]>
Commit-Queue: Bartek Nowierski <[email protected]>
Cr-Commit-Position: refs/heads/main@{#1144526}
diff --git a/base/allocator/unittest_utils.cc b/base/allocator/unittest_utils.cc
index 56dc3c8..6e728b29 100644
--- a/base/allocator/unittest_utils.cc
+++ b/base/allocator/unittest_utils.cc
@@ -9,11 +9,10 @@
 #include <stddef.h>
 
 inline int snprintf(char* buffer, size_t count, const char* format, ...) {
-    int result;
-    va_list args;
-    va_start(args, format);
-    result = _vsnprintf(buffer, count, format, args);
-    va_end(args);
-    return result;
+  int result;
+  va_list args;
+  va_start(args, format);
+  result = _vsnprintf(buffer, count, format, args);
+  va_end(args);
+  return result;
 }
-