From c0085bc2b7970aaddd9aa530dc5de67f3d6b95db Mon Sep 17 00:00:00 2001 From: Araq Date: Mon, 15 Jul 2019 13:16:02 +0200 Subject: [PATCH] styleCheck fixes [bugfix] (cherry picked from commit dd7dd1b6dc775ab106fec3c4224f89d41a5ad176) --- lib/posix/posix_nintendoswitch.nim | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/posix/posix_nintendoswitch.nim b/lib/posix/posix_nintendoswitch.nim index ae0f2dcdf9..887d165861 100644 --- a/lib/posix/posix_nintendoswitch.nim +++ b/lib/posix/posix_nintendoswitch.nim @@ -341,7 +341,7 @@ type const Sockaddr_un_path_length* = 108 type - Socklen* {.importc: "socklen_t", header: "".} = cuint + SockLen* {.importc: "socklen_t", header: "".} = cuint # cushort really TSa_Family* {.importc: "sa_family_t", header: "".} = cshort @@ -376,7 +376,7 @@ type Tmsghdr* {.importc: "struct msghdr", pure, final, header: "".} = object ## struct msghdr msg_name*: pointer ## Optional address. - msg_namelen*: Socklen ## Size of address. + msg_namelen*: SockLen ## Size of address. msg_iov*: ptr IOVec ## Scatter/gather array. msg_iovlen*: csize ## Members in msg_iov. msg_control*: pointer ## Ancillary data; see below. @@ -473,7 +473,7 @@ type ai_family*: cint ## Address family of socket. ai_socktype*: cint ## Socket type. ai_protocol*: cint ## Protocol of socket. - ai_addrlen*: Socklen ## Length of socket address. + ai_addrlen*: SockLen ## Length of socket address. ai_canonname*: cstring ## Canonical name of service location. ai_addr*: ptr SockAddr ## Socket address of socket. ai_next*: ptr AddrInfo ## Pointer to next in list.