summaryrefslogtreecommitdiff
path: root/lib/sanitizer_common/sanitizer_printf.cc
diff options
context:
space:
mode:
authorEvgeniy Stepanov <eugeni.stepanov@gmail.com>2013-03-13 08:17:39 +0000
committerEvgeniy Stepanov <eugeni.stepanov@gmail.com>2013-03-13 08:17:39 +0000
commit87c8bb96ddfd601e679a1acfe1a3d489993644b0 (patch)
tree4e2d7ef6dc91c66a9d410e39517d10bc00c058a8 /lib/sanitizer_common/sanitizer_printf.cc
parent4a1a495f29b63d44e012f6edcee6307ddac253ef (diff)
Break a >80 char line.
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@176937 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/sanitizer_common/sanitizer_printf.cc')
-rw-r--r--lib/sanitizer_common/sanitizer_printf.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/sanitizer_common/sanitizer_printf.cc b/lib/sanitizer_common/sanitizer_printf.cc
index 2b00caedc..4b5a8b4af 100644
--- a/lib/sanitizer_common/sanitizer_printf.cc
+++ b/lib/sanitizer_common/sanitizer_printf.cc
@@ -230,7 +230,8 @@ void Report(const char *format, ...) {
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;