summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/service/sockets/sockets.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/sockets/sockets.h b/src/core/hle/service/sockets/sockets.h
index 4079c7728..f3ea31bde 100644
--- a/src/core/hle/service/sockets/sockets.h
+++ b/src/core/hle/service/sockets/sockets.h
@@ -19,12 +19,12 @@ enum class Errno : u32 {
19 INVAL = 22, 19 INVAL = 22,
20 MFILE = 24, 20 MFILE = 24,
21 PIPE = 32, 21 PIPE = 32,
22 CONNREFUSED = 111,
23 MSGSIZE = 90, 22 MSGSIZE = 90,
24 CONNABORTED = 103, 23 CONNABORTED = 103,
25 CONNRESET = 104, 24 CONNRESET = 104,
26 NOTCONN = 107, 25 NOTCONN = 107,
27 TIMEDOUT = 110, 26 TIMEDOUT = 110,
27 CONNREFUSED = 111,
28 INPROGRESS = 115, 28 INPROGRESS = 115,
29}; 29};
30 30