summaryrefslogtreecommitdiffstats
path: root/runtime/jdwp
diff options
context:
space:
mode:
authorBrian Carlstrom <bdc@google.com>2013-07-18 14:45:22 -0700
committerBrian Carlstrom <bdc@google.com>2013-07-18 14:57:03 -0700
commit38f85e4892f6504971bde994fec81fd61780ac30 (patch)
tree971ffbc77786712fd2fd561d5cc1ab8a31d74550 /runtime/jdwp
parent1895ea386ca78573302483f589ebabd8ce1480e7 (diff)
downloadart-38f85e4892f6504971bde994fec81fd61780ac30.zip
art-38f85e4892f6504971bde994fec81fd61780ac30.tar.gz
art-38f85e4892f6504971bde994fec81fd61780ac30.tar.bz2
Fix cpplint whitespace/operators issues
Change-Id: I730bd87b476bfa36e93b42e816ef358006b69ba5
Diffstat (limited to 'runtime/jdwp')
-rw-r--r--runtime/jdwp/jdwp_event.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/jdwp/jdwp_event.cc b/runtime/jdwp/jdwp_event.cc
index 77434e1..52dd782 100644
--- a/runtime/jdwp/jdwp_event.cc
+++ b/runtime/jdwp/jdwp_event.cc
@@ -1070,7 +1070,7 @@ void JdwpState::DdmSendChunkV(uint32_t type, const iovec* iov, int iov_count) {
Thread* self = Thread::Current();
bool safe_to_release_mutator_lock_over_send = !Locks::mutator_lock_->IsExclusiveHeld(self);
if (safe_to_release_mutator_lock_over_send) {
- for (size_t i=0; i < kMutatorLock; ++i) {
+ for (size_t i = 0; i < kMutatorLock; ++i) {
if (self->GetHeldMutex(static_cast<LockLevel>(i)) != NULL) {
safe_to_release_mutator_lock_over_send = false;
break;