diff options
Diffstat (limited to 'runtime/gc/heap.cc')
| -rw-r--r-- | runtime/gc/heap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/heap.cc b/runtime/gc/heap.cc index 34d82845dc..268cca0cfd 100644 --- a/runtime/gc/heap.cc +++ b/runtime/gc/heap.cc @@ -360,7 +360,7 @@ Heap::Heap(size_t initial_size, // If we are the zygote, the non moving space becomes the zygote space when we run // PreZygoteFork the first time. In this case, call the map "zygote space" since we can't // rename the mem map later. - const char* space_name = is_zygote ? kZygoteSpaceName: kNonMovingSpaceName; + const char* space_name = is_zygote ? kZygoteSpaceName : kNonMovingSpaceName; // Reserve the non moving mem map before the other two since it needs to be at a specific // address. non_moving_space_mem_map.reset( |