diff options
Diffstat (limited to 'src/tests/memblock-test.c')
-rw-r--r-- | src/tests/memblock-test.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/memblock-test.c b/src/tests/memblock-test.c index a48daf7ed..d46da6ca0 100644 --- a/src/tests/memblock-test.c +++ b/src/tests/memblock-test.c @@ -82,11 +82,11 @@ START_TEST (memblock_test) { const char txt[] = "This is a test!"; - pool_a = pa_mempool_new(TRUE, 0); + pool_a = pa_mempool_new(true, 0); fail_unless(pool_a != NULL); - pool_b = pa_mempool_new(TRUE, 0); + pool_b = pa_mempool_new(true, 0); fail_unless(pool_b != NULL); - pool_c = pa_mempool_new(TRUE, 0); + pool_c = pa_mempool_new(true, 0); fail_unless(pool_c != NULL); pa_mempool_get_shm_id(pool_a, &id_a); |