Skip to content

Commit 8bd4b4d

Browse files
committed
Fix formatting.
1 parent 41edc6d commit 8bd4b4d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

lib/std/threads/threadpool.c3

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -91,13 +91,13 @@ fn void? ThreadPool.init(&self, Allocator allocator, int max_threads, sz queue_c
9191
*>
9292
fn void? ThreadPool.prewarm(&self, int count)
9393
{
94-
self.mx.@in_lock()
95-
{
96-
while (self.alive_count < count && self.alive_count < self.max_threads)
97-
{
98-
_thread_pool_spawn_worker_in_lock(self)!;
99-
}
100-
};
94+
self.mx.@in_lock()
95+
{
96+
while (self.alive_count < count && self.alive_count < self.max_threads)
97+
{
98+
_thread_pool_spawn_worker_in_lock(self)!;
99+
}
100+
};
101101
}
102102

103103
<*

0 commit comments

Comments
 (0)