mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-29 09:24:36 +00:00
Renamed local variable to avoid compiler warning.
This commit is contained in:
@@ -833,9 +833,9 @@ type inet_ntop_proc = proc(family: cint, paddr: pointer, pStringBuffer: cstring,
|
||||
|
||||
var inet_ntop_real: inet_ntop_proc = nil
|
||||
|
||||
let l = loadLib(ws2dll)
|
||||
if l != nil:
|
||||
inet_ntop_real = cast[inet_ntop_proc](symAddr(l, "inet_ntop"))
|
||||
let ws2 = loadLib(ws2dll)
|
||||
if ws2 != nil:
|
||||
inet_ntop_real = cast[inet_ntop_proc](symAddr(ws2, "inet_ntop"))
|
||||
|
||||
proc WSAAddressToStringA(pAddr: ptr SockAddr, addrSize: DWORD, unused: pointer, pBuff: cstring, pBuffSize: ptr DWORD): cint {.stdcall, importc, dynlib: ws2dll.}
|
||||
proc inet_ntop_emulated(family: cint, paddr: pointer, pStringBuffer: cstring,
|
||||
|
||||
Reference in New Issue
Block a user