summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConlain Kelly <conlain.k@gmail.com>2018-06-25 14:13:24 -0400
committerConlain Kelly <conlain.k@gmail.com>2018-06-25 14:13:24 -0400
commit7c11347f411364c66c36b36edda7dc6e3ad32829 (patch)
tree786355a5183eb9708c17f544e5531b3fcc73fd1d
parent1a72458d7a98482d108084889ba93793a98d28fa (diff)
downloadsdl_core-feature/boost_rwlock_implementation.tar.gz
-rw-r--r--src/components/utils/src/rwlock.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/utils/src/rwlock.cc b/src/components/utils/src/rwlock.cc
index 2139ed5405..386f04acd9 100644
--- a/src/components/utils/src/rwlock.cc
+++ b/src/components/utils/src/rwlock.cc
@@ -79,7 +79,7 @@ bool RWLock::AcquireForWriting() {
return false;
}
// we now have an exclusive lock
- write_locked_ = true;
+ write_locked_ = true;
return true;
}