diff --git a/compiler-rt/lib/xray/xray_allocator.h b/compiler-rt/lib/xray/xray_allocator.h --- a/compiler-rt/lib/xray/xray_allocator.h +++ b/compiler-rt/lib/xray/xray_allocator.h @@ -66,7 +66,8 @@ if (UNLIKELY(internal_iserror(B, &ErrNo))) { if (Verbosity()) Report("XRay Profiling: Failed to allocate memory of size %zu; Error = " - "%zu.\n", RoundedSize, B); + "%zu.\n", + RoundedSize, B); return nullptr; } #endif @@ -114,7 +115,8 @@ if (UNLIKELY(internal_iserror(B, &ErrNo))) { if (Verbosity()) Report("XRay Profiling: Failed to allocate memory of size %zu; Error = " - "%zu.\n", RoundedSize, B); + "%zu.\n", + RoundedSize, B); return nullptr; } #endif