2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

soc_u: Fix a missing formatting argument

This commit is contained in:
Lioncash 2015-01-02 19:54:21 -05:00
parent 092a67cefb
commit bdbd111c7e

View file

@ -404,7 +404,7 @@ static void Fcntl(Service::Interface* self) {
} }
#endif #endif
} else { } 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 result = TranslateError(EINVAL); // TODO: Find the correct error
posix_ret = -1; posix_ret = -1;
return; return;