Browse Source

Update sockets.h

forgot to realign the enum
pull/15/merge
LotP1 2 years ago
committed by GitHub
parent
commit
ecea5ef757
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      src/core/hle/service/sockets/sockets.h

2
src/core/hle/service/sockets/sockets.h

@ -19,12 +19,12 @@ enum class Errno : u32 {
INVAL = 22, INVAL = 22,
MFILE = 24, MFILE = 24,
PIPE = 32, PIPE = 32,
CONNREFUSED = 111,
MSGSIZE = 90, MSGSIZE = 90,
CONNABORTED = 103, CONNABORTED = 103,
CONNRESET = 104, CONNRESET = 104,
NOTCONN = 107, NOTCONN = 107,
TIMEDOUT = 110, TIMEDOUT = 110,
CONNREFUSED = 111,
INPROGRESS = 115, INPROGRESS = 115,
}; };

Loading…
Cancel
Save