diff options
author | Elliott Hughes <enh@google.com> | 2020-07-21 16:11:30 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2020-07-21 16:34:58 -0700 |
commit | 68ae6ad12e4f89526638f167c380d0b28b3bdeac (patch) | |
tree | e18075751c1f0d08d94d7c6be14e1a18b560b285 /tests/bionic_allocator_test.cpp | |
parent | c79ea239415963d4a38752d0f3efe50531c8e04f (diff) |
Changes for #inclusivefixit.
Test: treehugger
Change-Id: I7ff0496c5c2792a41781e74634247f55b0548213
Diffstat (limited to 'tests/bionic_allocator_test.cpp')
-rw-r--r-- | tests/bionic_allocator_test.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/bionic_allocator_test.cpp b/tests/bionic_allocator_test.cpp index f71090704..fdcf86827 100644 --- a/tests/bionic_allocator_test.cpp +++ b/tests/bionic_allocator_test.cpp @@ -42,19 +42,19 @@ namespace { * this one has size below allocator cap which is 2*sizeof(void*) */ struct test_struct_small { - char dummy_str[5]; + char str[5]; }; struct test_struct_large { - char dummy_str[1009]; + char str[1009]; }; struct test_struct_huge { - char dummy_str[73939]; + char str[73939]; }; struct test_struct_512 { - char dummy_str[503]; + char str[503]; }; }; |