`clang-format -i -style=file *.cc *.h`

Change-Id: I62a87c5d8309b21265e904c0aeb9b3e094c9024a
diff --git a/strutil_test.cc b/strutil_test.cc
index a26cf4d..e83b4c3 100644
--- a/strutil_test.cc
+++ b/strutil_test.cc
@@ -160,8 +160,8 @@
 // freeing the allocated pages.
 const char* CreateProtectedString(const char* str) {
   int pagesize = sysconf(_SC_PAGE_SIZE);
-  void *buffer;
-  char *buffer_str;
+  void* buffer;
+  char* buffer_str;
 
   // Allocate two pages of memory
   if (posix_memalign(&buffer, pagesize, pagesize * 2) != 0) {