diff options
Diffstat (limited to 'runtime/gc/space/space_test.h')
-rw-r--r-- | runtime/gc/space/space_test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/gc/space/space_test.h b/runtime/gc/space/space_test.h index 20ef44a77d..23e937d34a 100644 --- a/runtime/gc/space/space_test.h +++ b/runtime/gc/space/space_test.h @@ -354,7 +354,7 @@ void SpaceTest<Super>::SizeFootPrintGrowthLimitAndTrimDriver(size_t object_size, #define TEST_SizeFootPrintGrowthLimitAndTrimRandom(name, spaceName, spaceFn, size) \ TEST_F(spaceName##RandomTest, SizeFootPrintGrowthLimitAndTrim_RandomAllocationsWithMax_##name) { \ - SizeFootPrintGrowthLimitAndTrimDriver(-size, spaceFn); \ + SizeFootPrintGrowthLimitAndTrimDriver(-(size), spaceFn); \ } #define TEST_SPACE_CREATE_FN_STATIC(spaceName, spaceFn) \ |