From 47c815fd73521997becf03033a51e315eb79af97 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=BD=D0=B0=D0=B1?= Date: Wed, 12 Jan 2022 17:38:03 +0100 Subject: [PATCH] libtpool: remove useless CSTYLED MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-by: Brian Behlendorf Signed-off-by: Ahelenia ZiemiaƄska Closes #12968 --- lib/libtpool/thread_pool.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/libtpool/thread_pool.c b/lib/libtpool/thread_pool.c index 892beeffa5ae..58b706ddebf5 100644 --- a/lib/libtpool/thread_pool.c +++ b/lib/libtpool/thread_pool.c @@ -108,8 +108,7 @@ job_cleanup(void *arg) tpool_active_t **activepp; pthread_mutex_lock(&tpool->tp_mutex); - /* CSTYLED */ - for (activepp = &tpool->tp_active;; activepp = &activep->tpa_next) { + for (activepp = &tpool->tp_active; ; activepp = &activep->tpa_next) { activep = *activepp; if (activep->tpa_tid == my_tid) { *activepp = activep->tpa_next;