From 0c53cc52bd3050fa000188ae6472659a402c6893 Mon Sep 17 00:00:00 2001
From: Lioncash <mathew1800@gmail.com>
Date: Fri, 30 Jan 2015 11:28:09 -0500
Subject: [PATCH] apt_u: Fix missing printf specifiers

---
 src/core/hle/service/apt_u.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/core/hle/service/apt_u.cpp b/src/core/hle/service/apt_u.cpp
index 629b670ed..4c3f621d0 100644
--- a/src/core/hle/service/apt_u.cpp
+++ b/src/core/hle/service/apt_u.cpp
@@ -373,7 +373,7 @@ void SetAppCpuTimeLimit(Service::Interface* self) {
     u32 percent = cmd_buff[2];
 
     if (value != 1) {
-        LOG_ERROR(Service_APT, "This value must be one!", value);
+        LOG_ERROR(Service_APT, "This value should be one, but is actually %u!", value);
     }
 
     cmd_buff[1] = RESULT_SUCCESS.raw; // No error
@@ -395,7 +395,7 @@ void GetAppCpuTimeLimit(Service::Interface* self) {
     u32 value = cmd_buff[1];
 
     if (value != 1) {
-        LOG_ERROR(Service_APT, "This value must be one!", value);
+        LOG_ERROR(Service_APT, "This value should be one, but is actually %u!", value);
     }
 
     // TODO(purpasmart96): This is incorrect, I'm pretty sure the percentage should