Remove misplaced dot

This commit is contained in:
Robin Voetter 2019-12-09 20:29:16 +01:00 committed by Andrew Kelley
parent 23b901d45a
commit d568db2386
No known key found for this signature in database
GPG Key ID: 7C5F548F728501A9

View File

@ -283,7 +283,7 @@ const PosixEvent = struct {
pub fn init() PosixEvent {
return PosixEvent{
.state = .0,
.state = 0,
.cond = c.PTHREAD_COND_INITIALIZER,
.mutex = c.PTHREAD_MUTEX_INITIALIZER,
};