aboutsummaryrefslogtreecommitdiffstats
path: root/erts/emulator/test/alloc_SUITE_data/basic.c
diff options
context:
space:
mode:
authorSverker Eriksson <[email protected]>2012-11-15 12:31:59 +0100
committerSverker Eriksson <[email protected]>2012-11-15 18:20:48 +0100
commit51277f5dcf29a085dc478e560d3b92a438c8ae2f (patch)
tree9944e8bd0f1799c9741a715d01c7cda6a185010b /erts/emulator/test/alloc_SUITE_data/basic.c
parent9a763d644ca0e549f2733fd414aee9e77691b376 (diff)
downloadotp-51277f5dcf29a085dc478e560d3b92a438c8ae2f.tar.gz
otp-51277f5dcf29a085dc478e560d3b92a438c8ae2f.tar.bz2
otp-51277f5dcf29a085dc478e560d3b92a438c8ae2f.zip
erts: Refactor renaming a couple of macros in alloc_util
To get a consistent naming scheme where FBLK = Free block ABLK = Allocated block
Diffstat (limited to 'erts/emulator/test/alloc_SUITE_data/basic.c')
-rw-r--r--erts/emulator/test/alloc_SUITE_data/basic.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/emulator/test/alloc_SUITE_data/basic.c b/erts/emulator/test/alloc_SUITE_data/basic.c
index 4a5e888161..0c27665712 100644
--- a/erts/emulator/test/alloc_SUITE_data/basic.c
+++ b/erts/emulator/test/alloc_SUITE_data/basic.c
@@ -44,7 +44,7 @@ testcase_run(TestCaseState_t *tcs)
c = FIRST_MBC(a);
ASSERT(tcs, !NEXT_C(c));
- blk = MBC2FBLK(a, c);
+ blk = MBC_TO_FIRST_BLK(a, c);
ASSERT(tcs, IS_LAST_BLK(blk));
ASSERT(tcs, IS_FREE_BLK(blk));