From 270cbb01198b5b2e7ea2972daac68d8a1fa7968a Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Fri, 25 Dec 2015 14:21:45 -0500
Subject: [PATCH] svc: Remove superfluous printf argument

---
 src/core/hle/svc.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/hle/svc.cpp b/src/core/hle/svc.cpp
index 9acebeb36..e39edcc16 100644
--- a/src/core/hle/svc.cpp
+++ b/src/core/hle/svc.cpp
@@ -807,7 +807,7 @@ static ResultCode GetSystemInfo(s64* out, u32 type, s32 param) {
         }
         break;
     case SystemInfoType::KERNEL_ALLOCATED_PAGES:
-        LOG_ERROR(Kernel_SVC, "unimplemented GetSystemInfo type=2 param=%d", type, param);
+        LOG_ERROR(Kernel_SVC, "unimplemented GetSystemInfo type=2 param=%d", param);
         *out = 0;
         break;
     case SystemInfoType::KERNEL_SPAWNED_PIDS: