| author | |
| committer | |
| log | 5dc251747b4ea65b1c8d3f2b5af62ca83c6d1196 |
| tree | ed44547f4a370c3d46bc1b5ede9d94a32b1a457c |
| parent | 806aeab2a729e0638ccf6682171181df56d31122 |
1 files changed, 1 insertions(+), 1 deletions(-)
lib/std/Thread/Condition.zig+1-1| ... | ... | @@ -54,7 +54,7 @@ pub const WindowsCondition = struct { |
| 54 | 54 | pub fn wait(cond: *WindowsCondition, mutex: *Mutex) void { |
| 55 | 55 | const rc = windows.kernel32.SleepConditionVariableSRW( |
| 56 | 56 | &cond.cond, |
| 57 | &mutex.srwlock, | |
| 57 | &mutex.impl.srwlock, | |
| 58 | 58 | windows.INFINITE, |
| 59 | 59 | @as(windows.ULONG, 0), |
| 60 | 60 | ); |