Index: src/spaces.cc |
diff --git a/src/spaces.cc b/src/spaces.cc |
index 539b77e51aa1cb3082da20802ad05416dea14922..5935c4a0ea94bfad71812f5d2d4b692ddb04afcf 100644 |
--- a/src/spaces.cc |
+++ b/src/spaces.cc |
@@ -2043,7 +2043,7 @@ intptr_t FreeListCategory::Concatenate(FreeListCategory* category) { |
// This is safe (not going to deadlock) since Concatenate operations |
// are never performed on the same free lists at the same time in |
// reverse order. |
- ScopedLock lock_target(mutex()); |
+ ScopedLock lock_target(mutex_); |
ScopedLock lock_source(category->mutex()); |
free_bytes = category->available(); |
if (end_ == NULL) { |