1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-09 00:00:00 +01:00

memtype-managed: fix typo in test

This commit is contained in:
Georg Reinke 2017-03-28 13:32:17 +02:00
parent 53f9e72e18
commit f4959f51b7

View file

@ -56,7 +56,7 @@ Test(memory, manager) {
p3 = memory_alloc_aligned(manager, 128, 256);
cr_assert(p3);
cr_assert(IS_ALIGNED(p1, 256));
cr_assert(IS_ALIGNED(p3, 256));
cr_assert(memory_free(manager, p2, 32) == 0);
cr_assert(memory_free(manager, p1, 128) == 0);