Fix typo in 32bytes aligned malloc test

This commit is contained in:
Sergey Sharybin
2016-02-06 16:42:19 +01:00
parent a90d5cd692
commit 5508cc2d63

View File

@@ -48,6 +48,6 @@ TEST(guardedalloc, GuardedAlignedAlloc16)
TEST(guardedalloc, GuardedAlignedAlloc32)
{
MEM_use_guarded_allocator();
DoBasicAlignmentChecks(16);
DoBasicAlignmentChecks(32);
}
#endif