diff options
author | Lennart Poettering <lennart@poettering.net> | 2008-10-01 01:14:36 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2008-10-01 01:14:36 +0200 |
commit | 79ad4e63f691d1280dde2eb6521a1572c78d03ce (patch) | |
tree | 65670a8d2e354a4ac38644a7aef5cd194a43a8c3 /src/tests/resampler-test.c | |
parent | a84b72bf96745702ba59c678a973edc7504ee50e (diff) |
Make the shared memory segment size configurable
This is useful only on systems where memory overcommit is not available
or disabled.
Diffstat (limited to 'src/tests/resampler-test.c')
-rw-r--r-- | src/tests/resampler-test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tests/resampler-test.c b/src/tests/resampler-test.c index 6959127b..2d591867 100644 --- a/src/tests/resampler-test.c +++ b/src/tests/resampler-test.c @@ -201,7 +201,7 @@ int main(int argc, char *argv[]) { oil_init(); pa_log_set_maximal_level(PA_LOG_DEBUG); - pa_assert_se(pool = pa_mempool_new(FALSE)); + pa_assert_se(pool = pa_mempool_new(FALSE, 0)); a.channels = b.channels = 1; a.rate = b.rate = 44100; |