diff options
| author | 2016-03-29 04:45:17 -0700 | |
|---|---|---|
| committer | 2016-03-29 04:45:17 -0700 | |
| commit | aa5bb3b997d56b33ea9de8c7435f06d3849b61fd (patch) | |
| tree | 5caa34081a69b706dfee4cb84957ce2bc5a73404 /src | |
| parent | Addressing PR comments (diff) | |
| download | yuzu-aa5bb3b997d56b33ea9de8c7435f06d3849b61fd.tar.gz yuzu-aa5bb3b997d56b33ea9de8c7435f06d3849b61fd.tar.xz yuzu-aa5bb3b997d56b33ea9de8c7435f06d3849b61fd.zip | |
Formatting...
Diffstat (limited to 'src')
| -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) { | |||
| 738 | 738 | ||
| 739 | int ret = ::getsockopt(socket_handle, level, optname, optval, &optlen); | 739 | int ret = ::getsockopt(socket_handle, level, optname, optval, &optlen); |
| 740 | int err = 0; | 740 | int err = 0; |
| 741 | if(ret == SOCKET_ERROR_VALUE) { | 741 | if (ret == SOCKET_ERROR_VALUE) { |
| 742 | err = TranslateError(GET_ERRNO); | 742 | err = TranslateError(GET_ERRNO); |
| 743 | } | 743 | } |
| 744 | 744 | ||