From be0e1ca72c1c99dc8df8fd608e9dbce8f9c22a87 Mon Sep 17 00:00:00 2001 From: Veklip <492217330@qq.com> Date: Mon, 17 Nov 2014 14:01:17 +0800 Subject: [PATCH] return 0 is useless --- src/pthread_pool.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pthread_pool.c b/src/pthread_pool.c index 5fe228b..2bb7b20 100644 --- a/src/pthread_pool.c +++ b/src/pthread_pool.c @@ -203,7 +203,7 @@ int threadpool_run(callback func,void *arg) pthread_mutex_unlock(&pool->mutex_locker); return result; - return 0; + } int threadpool_free()