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
} 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;