Skip to content

Commit 583b965

Browse files
committed
Fix minor inconsistency.
1 parent 4832a7e commit 583b965

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/gRPC/CountDownLatch.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public class CountDownLatch {
4545
}
4646

4747
public func signal() {
48-
condition.lock()
48+
self.condition.lock()
4949
self.count = self.count - 1
5050
self.condition.signal()
5151
self.condition.unlock()

0 commit comments

Comments
 (0)