diff options
author | Martin Willi <martin@strongswan.org> | 2005-11-28 20:29:47 +0000 |
---|---|---|
committer | Martin Willi <martin@strongswan.org> | 2005-11-28 20:29:47 +0000 |
commit | d048df5cabd2d17713230f260bccebb205740498 (patch) | |
tree | 5c08427945e6a94421e84deada90aac2065fde18 /Source/charon/testcases/thread_pool_test.c | |
parent | 3fe058703ffe537dfdf68b9ad4d9143644230321 (diff) | |
download | strongswan-d048df5cabd2d17713230f260bccebb205740498.tar.bz2 strongswan-d048df5cabd2d17713230f260bccebb205740498.tar.xz |
- return value cleanup
Diffstat (limited to 'Source/charon/testcases/thread_pool_test.c')
-rw-r--r-- | Source/charon/testcases/thread_pool_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/charon/testcases/thread_pool_test.c b/Source/charon/testcases/thread_pool_test.c index ad3200ccd..a72b88040 100644 --- a/Source/charon/testcases/thread_pool_test.c +++ b/Source/charon/testcases/thread_pool_test.c @@ -37,5 +37,5 @@ void test_thread_pool(tester_t *tester) thread_pool_t *pool = thread_pool_create(desired_pool_size); pool_size = pool->get_pool_size(pool); tester->assert_true(tester, (desired_pool_size == pool_size), "thread creation"); - tester->assert_true(tester, (pool->destroy(pool) == SUCCESS), "threadpool destruction"); + pool->destroy(pool); } |