diff options
author | Ryan Loebs <obsidianx@gmail.com> | 2016-03-29 04:45:17 -0700 |
---|---|---|
committer | Ryan Loebs <obsidianx@gmail.com> | 2016-03-29 04:45:17 -0700 |
commit | aa5bb3b997d56b33ea9de8c7435f06d3849b61fd (patch) | |
tree | 5caa34081a69b706dfee4cb84957ce2bc5a73404 | |
parent | 65883d9327030adb33938c9b0de276b4cfd74a46 (diff) |
Formatting...
-rw-r--r-- | src/core/hle/service/soc_u.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/soc_u.cpp b/src/core/hle/service/soc_u.cpp index ea301f71f..43194345c 100644 --- a/src/core/hle/service/soc_u.cpp +++ b/src/core/hle/service/soc_u.cpp @@ -738,7 +738,7 @@ static void GetSockOpt(Service::Interface* self) { int ret = ::getsockopt(socket_handle, level, optname, optval, &optlen); int err = 0; - if(ret == SOCKET_ERROR_VALUE) { + if (ret == SOCKET_ERROR_VALUE) { err = TranslateError(GET_ERRNO); } |