Skip to content

Commit 88dc49e

Browse files
authored
Run the formatter (#76)
Motivation: The formatter hasn't been run since the formatting CI image got updated so the formatting check now fails. Modifications: Run the formatter. Result: Formatting CI check passes
1 parent 1d4d97b commit 88dc49e

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

Sources/AsyncDNSResolver/c-ares/DNSResolver_c-ares.swift

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,9 +123,10 @@ extension QueryType {
123123

124124
@available(macOS 10.15, iOS 13, tvOS 13, watchOS 6, *)
125125
final class Ares: Sendable {
126-
typealias QueryCallback = @convention(c) (
127-
UnsafeMutableRawPointer?, CInt, CInt, UnsafeMutablePointer<CUnsignedChar>?, CInt
128-
) -> Void
126+
typealias QueryCallback =
127+
@convention(c) (
128+
UnsafeMutableRawPointer?, CInt, CInt, UnsafeMutablePointer<CUnsignedChar>?, CInt
129+
) -> Void
129130

130131
private let channel: AresChannel
131132
private let queryProcessor: QueryProcessor

0 commit comments

Comments
 (0)