summaryrefslogtreecommitdiff
path: root/lib/sanitizer_common/sanitizer_printf.cc
diff options
context:
space:
mode:
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;