Break a >80 char line.


git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@176937 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/lib/sanitizer_common/sanitizer_printf.cc b/lib/sanitizer_common/sanitizer_printf.cc
index 2b00cae..4b5a8b4 100644
--- a/lib/sanitizer_common/sanitizer_printf.cc
+++ b/lib/sanitizer_common/sanitizer_printf.cc
@@ -230,7 +230,8 @@
       if (use_mmap) {
         RAW_CHECK_MSG(needed_length < kLen, "Buffer in Report is too short!\n");
       } else {
-        // The error message doesn't fit into the local buffer - allocate a bigger one.
+        // The error message doesn't fit into the local buffer - allocate a
+        // bigger one.
         buffer = (char*)MmapOrDie(kLen, "Report");
         cur_size = kLen;
         continue;