diff --git a/http2.d b/http2.d index 8d066fa..62c14a4 100644 --- a/http2.d +++ b/http2.d @@ -1909,7 +1909,8 @@ class HttpRequest { // is liable to block forever hogging the connection and not letting it send... if(request.state == State.connecting) if(writeSet.isSet(sock) || readSet.isSet(sock)) { - int error; + import core.stdc.stdint; + int32_t error; int retopt = sock.getOption(SocketOptionLevel.SOCKET, SocketOption.ERROR, error); if(retopt < 0 || error != 0) { request.state = State.aborted;