Skip to content

Commit

Permalink
AMEND
Browse files Browse the repository at this point in the history
  • Loading branch information
igoriakovlev committed Apr 1, 2024
1 parent 36ebdb8 commit e0f4ae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kotlinx-coroutines-core/wasmWasi/src/internal/EventLoop.kt
Expand Up @@ -132,7 +132,7 @@ private fun runEventCycle(currentTime: Long) {
} else {
nextCycleEvents.add(currentEvent)
nextCycleNearestEventAbsoluteTime = min(eventAbsoluteTime, nextCycleNearestEventAbsoluteTime)
nextCycleContainTimedEvent = eventAbsoluteTime > 0
nextCycleContainTimedEvent = nextCycleContainTimedEvent || eventAbsoluteTime > 0
}
}
}
Expand Down

0 comments on commit e0f4ae0

Please sign in to comment.