summaryrefslogtreecommitdiff
path: root/lib/sanitizer_common/sanitizer_deadlock_detector2.cc
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2014-07-08 13:07:23 +0000
committerDmitry Vyukov <dvyukov@google.com>2014-07-08 13:07:23 +0000
commite4f8d291921ec4dfa7ee547e15f15492281deca4 (patch)
tree8e02f7aaaad9b990016e5b7f258d815d92e15cde /lib/sanitizer_common/sanitizer_deadlock_detector2.cc
parent910493921ed48fd76d876e9cd33a65c5315e0589 (diff)
tsan: remove unnecessary line split
git-svn-id: https://llvm.org/svn/llvm-project/compiler-rt/trunk@212527 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/sanitizer_common/sanitizer_deadlock_detector2.cc')
-rw-r--r--lib/sanitizer_common/sanitizer_deadlock_detector2.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/sanitizer_common/sanitizer_deadlock_detector2.cc b/lib/sanitizer_common/sanitizer_deadlock_detector2.cc
index 22843623a..87d4a4d9a 100644
--- a/lib/sanitizer_common/sanitizer_deadlock_detector2.cc
+++ b/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;
}