Remove whitespace

This commit is contained in:
2024-04-14 22:38:00 +03:00
parent a645a201d8
commit ec499b6cfc
4 changed files with 24 additions and 24 deletions

View File

@@ -209,10 +209,10 @@ void bh_thread_pool_worker(void *arg)
task->flags |= BH_THREAD_DONE;
if (task->flags & BH_THREAD_CLEANUP)
bh_task_free(task);
bh_mutex_lock(&pool->lock);
pool->active--;
bh_mutex_unlock(&pool->lock);
bh_cond_broadcast(&pool->done_task);
}