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

svc: Fix compilation with LOG_TRACE enabled

Lioncash 10 лет назад
Родитель
Сommit
84afaaa10c
1 измененных файлов с 1 добавлено и 1 удалено
  1. 1 1
      src/core/hle/svc.cpp

+ 1 - 1
src/core/hle/svc.cpp

@@ -781,7 +781,7 @@ static ResultCode CreateMemoryBlock(Handle* out_handle, u32 addr, u32 size, u32
 static ResultCode GetSystemInfo(s64* out, u32 type, s32 param) {
 static ResultCode GetSystemInfo(s64* out, u32 type, s32 param) {
     using Kernel::MemoryRegion;
     using Kernel::MemoryRegion;
 
 
-    LOG_TRACE(Kernel_SVC, "called process=0x%08X type=%u param=%d", process_handle, type, param);
+    LOG_TRACE(Kernel_SVC, "called type=%u param=%d", type, param);
 
 
     switch ((SystemInfoType)type) {
     switch ((SystemInfoType)type) {
     case SystemInfoType::REGION_MEMORY_USAGE:
     case SystemInfoType::REGION_MEMORY_USAGE: