diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2014-06-19 17:32:58 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2014-06-19 17:33:16 -0400 |
commit | 399a0446f238cdf99e6fd2c640f76170d5fcbc60 (patch) | |
tree | 4bc8754d7639b344243c1a0c7e0624f7947745aa /libdimension/tests | |
parent | 000e1a4ade1b16131898bd7e394377cce63d293b (diff) | |
download | dimension-399a0446f238cdf99e6fd2c640f76170d5fcbc60.tar.xz |
pool: Use separate blocks for non-tidy allocations.
Diffstat (limited to 'libdimension/tests')
-rw-r--r-- | libdimension/tests/pool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libdimension/tests/pool.c b/libdimension/tests/pool.c index 83f25f7..1722d66 100644 --- a/libdimension/tests/pool.c +++ b/libdimension/tests/pool.c @@ -59,10 +59,10 @@ callback(void *ptr) DMNSN_TEST(pool, callback) { - DMNSN_PALLOC_TIDY(pool, int, NULL); + DMNSN_PALLOC(pool, int); DMNSN_PALLOC_TIDY(pool, int, callback); DMNSN_PALLOC_TIDY(pool, int, callback); - DMNSN_PALLOC_TIDY(pool, int, NULL); + DMNSN_PALLOC(pool, int); dmnsn_delete_pool(pool); pool = NULL; |