diff --git a/src/ThreadPool.zig b/src/ThreadPool.zig index 18818c7d9d..7386e426eb 100644 --- a/src/ThreadPool.zig +++ b/src/ThreadPool.zig @@ -21,7 +21,7 @@ const Runnable = struct { const Worker = struct { pool: *ThreadPool, - thread: *std.Thread, + thread: std.Thread, /// The node is for this worker only and must have an already initialized event /// when the thread is spawned. idle_node: IdleQueue.Node,