diff --git a/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cc b/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cc index 22843623a8dc..87d4a4d9a838 100644 --- a/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cc +++ b/compiler-rt/lib/sanitizer_common/sanitizer_deadlock_detector2.cc @@ -187,8 +187,7 @@ u32 DD::allocateId(DDCallback *cb) { id = id_gen++; } CHECK_LE(id, kMaxMutex); - VPrintf(3, "#%llu: DD::allocateId assign id %d\n", - cb->lt->ctx, id); + VPrintf(3, "#%llu: DD::allocateId assign id %d\n", cb->lt->ctx, id); return id; }