Skip to content
This repository was archived by the owner on Dec 15, 2024. It is now read-only.

Commit 85e4071

Browse files
committed
Fixed WASM support
1 parent 2300d94 commit 85e4071

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Sources/SwiftFoundation/POSIXTime.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ internal extension timeval {
5050

5151
let microseconds = decimalValue * million
5252

53-
self.init(tv_sec: Int(integerValue), tv_usec: POSIXMicroseconds(microseconds))
53+
self.init(tv_sec: .init(integerValue), tv_usec: .init(microseconds))
5454
}
5555

5656
var timeInterval: SwiftFoundation.TimeInterval {

0 commit comments

Comments
 (0)