From 617d4cecfc5a6a939060157912fe5ea9739e3186 Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sun, 20 Nov 2022 09:18:07 -0500 Subject: [PATCH] lol druntime made int32_t an enum on -m32omf and an alias everywhere else --- http2.d | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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;