diff options
author | bunnei <bunneidev@gmail.com> | 2015-01-02 20:38:48 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-01-02 20:38:48 -0500 |
commit | 84856a45493906d2860a004c4b4c85b7cffc7c11 (patch) | |
tree | fff31b2029f80e74df8a6d69ea40c7936f1dbc8d /src | |
parent | 092a67cefbe5aa178b5f9b832fe274bce67f4d10 (diff) | |
parent | bdbd111c7ef518c7cde512ee719227b2278ec6a6 (diff) |
Merge pull request #389 from lioncash/fmt
soc_u: Fix a missing formatting argument
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 9fbf18b26..8e7abcf9c 100644 --- a/src/core/hle/service/soc_u.cpp +++ b/src/core/hle/service/soc_u.cpp @@ -404,7 +404,7 @@ static void Fcntl(Service::Interface* self) { } #endif } else { - LOG_ERROR(Service_SOC, "Unsupported command (%d) in fcntl call"); + LOG_ERROR(Service_SOC, "Unsupported command (%d) in fcntl call", ctr_cmd); result = TranslateError(EINVAL); // TODO: Find the correct error posix_ret = -1; return; |