We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a539532 commit 20dd361Copy full SHA for 20dd361
.gitignore
@@ -1,2 +1,4 @@
1
libdredis.a
2
dub.selections.json
3
+dredis.lib
4
+.dub/*
source/redis/redis.d
@@ -11,6 +11,8 @@ import std.string;
11
import std.typetuple;
12
import std.exception;
13
14
+import core.stdc.stdint;
15
+
16
public import redis;
17
import std.socket;
18
public class Redis
@@ -228,7 +230,7 @@ public class Redis
228
230
}
229
231
232
- int error;
233
+ int32_t error;
234
conns[addr].getOption(SocketOptionLevel.SOCKET, SocketOption.ERROR, error);
235
if (error != 0)
236
{
0 commit comments