get rid of compiler warning

This commit is contained in:
Araq
2016-03-18 18:53:17 +01:00
parent c10a407cc6
commit aa47302866

View File

@@ -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 L = loadLib(ws2dll)
if L != nil:
inet_ntop_real = cast[inet_ntop_proc](symAddr(L, "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,