summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/sockets/sockets_translate.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/sockets/sockets_translate.cpp b/src/core/hle/service/sockets/sockets_translate.cpp
index ea0b081c2..21bb3e776 100644
--- a/src/core/hle/service/sockets/sockets_translate.cpp
+++ b/src/core/hle/service/sockets/sockets_translate.cpp
@@ -15,8 +15,6 @@ Errno Translate(Network::Errno value) {
15 switch (value) { 15 switch (value) {
16 case Network::Errno::SUCCESS: 16 case Network::Errno::SUCCESS:
17 return Errno::SUCCESS; 17 return Errno::SUCCESS;
18 case Network::Errno::CONNREFUSED:
19 return Errno::CONNREFUSED;
20 case Network::Errno::BADF: 18 case Network::Errno::BADF:
21 return Errno::BADF; 19 return Errno::BADF;
22 case Network::Errno::AGAIN: 20 case Network::Errno::AGAIN:
@@ -27,6 +25,8 @@ Errno Translate(Network::Errno value) {
27 return Errno::MFILE; 25 return Errno::MFILE;
28 case Network::Errno::PIPE: 26 case Network::Errno::PIPE:
29 return Errno::PIPE; 27 return Errno::PIPE;
28 case Network::Errno::CONNREFUSED:
29 return Errno::CONNREFUSED;
30 case Network::Errno::NOTCONN: 30 case Network::Errno::NOTCONN:
31 return Errno::NOTCONN; 31 return Errno::NOTCONN;
32 case Network::Errno::TIMEDOUT: 32 case Network::Errno::TIMEDOUT: