summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar Lioncash2015-01-02 19:54:21 -0500
committerGravatar Lioncash2015-01-02 19:54:21 -0500
commitbdbd111c7ef518c7cde512ee719227b2278ec6a6 (patch)
treefff31b2029f80e74df8a6d69ea40c7936f1dbc8d /src/core
parentMerge pull request #382 from lioncash/sx (diff)
downloadyuzu-bdbd111c7ef518c7cde512ee719227b2278ec6a6.tar.gz
yuzu-bdbd111c7ef518c7cde512ee719227b2278ec6a6.tar.xz
yuzu-bdbd111c7ef518c7cde512ee719227b2278ec6a6.zip
soc_u: Fix a missing formatting argument
Diffstat (limited to 'src/core')
-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 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) {
404 } 404 }
405#endif 405#endif
406 } else { 406 } else {
407 LOG_ERROR(Service_SOC, "Unsupported command (%d) in fcntl call"); 407 LOG_ERROR(Service_SOC, "Unsupported command (%d) in fcntl call", ctr_cmd);
408 result = TranslateError(EINVAL); // TODO: Find the correct error 408 result = TranslateError(EINVAL); // TODO: Find the correct error
409 posix_ret = -1; 409 posix_ret = -1;
410 return; 410 return;