From ff00cb391a2298dffa52034d7584dc571b3a2e91 Mon Sep 17 00:00:00 2001 From: wwylele Date: Sun, 3 Dec 2017 11:52:42 +0200 Subject: [PATCH] service/ptm: add missing % in logging --- src/core/hle/service/ptm/ptm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/ptm/ptm.cpp b/src/core/hle/service/ptm/ptm.cpp index a72161850..38216239b 100644 --- a/src/core/hle/service/ptm/ptm.cpp +++ b/src/core/hle/service/ptm/ptm.cpp @@ -97,7 +97,7 @@ void GetStepHistory(Interface* self) { IPC::RequestBuilder rb = rp.MakeBuilder(1, 0); rb.Push(RESULT_SUCCESS); - LOG_WARNING(Service_PTM, "(STUBBED) called, from time(raw): 0x" PRIx64 ", for %u hours", + LOG_WARNING(Service_PTM, "(STUBBED) called, from time(raw): 0x%" PRIx64 ", for %u hours", start_time, hours); }