Просмотр исходного кода

soc_u: Fix a missing formatting argument

Lioncash 11 лет назад
Родитель
Сommit
bdbd111c7e
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
 #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;