فهرست منبع

Merge pull request #389 from lioncash/fmt

soc_u: Fix a missing formatting argument
bunnei 11 سال پیش
والد
کامیت
84856a4549
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      src/core/hle/service/soc_u.cpp

+ 1 - 1
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;