summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRyan Loebs <obsidianx@gmail.com>2016-03-29 13:45:17 +0200
committerRyan Loebs <obsidianx@gmail.com>2016-03-29 13:45:17 +0200
commitaa5bb3b997d56b33ea9de8c7435f06d3849b61fd (patch)
tree5caa34081a69b706dfee4cb84957ce2bc5a73404 /src
parentAddressing PR comments (diff)
downloadyuzu-aa5bb3b997d56b33ea9de8c7435f06d3849b61fd.tar
yuzu-aa5bb3b997d56b33ea9de8c7435f06d3849b61fd.tar.gz
yuzu-aa5bb3b997d56b33ea9de8c7435f06d3849b61fd.tar.bz2
yuzu-aa5bb3b997d56b33ea9de8c7435f06d3849b61fd.tar.lz
yuzu-aa5bb3b997d56b33ea9de8c7435f06d3849b61fd.tar.xz
yuzu-aa5bb3b997d56b33ea9de8c7435f06d3849b61fd.tar.zst
yuzu-aa5bb3b997d56b33ea9de8c7435f06d3849b61fd.zip
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/soc_u.cpp2
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);
}