lol druntime made int32_t an enum on -m32omf and an alias everywhere else

This commit is contained in:
Adam D. Ruppe 2022-11-20 09:18:07 -05:00
parent a30a39bf62
commit 617d4cecfc
1 changed files with 2 additions and 1 deletions

View File

@ -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;