Skip to content

Commit 098d77f

Browse files
committed
dns: Fix another compilation warning (const pointer -> pointer)
1 parent fbc8bb4 commit 098d77f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

uvloop/dns.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cdef __convert_sockaddr_to_pyaddr(system.sockaddr* addr):
1+
cdef __convert_sockaddr_to_pyaddr(const system.sockaddr* addr):
22
# Converts sockaddr structs into what Python socket
33
# module can understand:
44
# - for IPv4 a tuple of (host, port)

0 commit comments

Comments
 (0)