From 0c4629bda25c32cb3c39b653c177af895b50ac06 Mon Sep 17 00:00:00 2001 From: Connor McLaughlin Date: Sun, 4 Jul 2021 22:17:18 +1000 Subject: [PATCH] CommonHostInterface: Compile warning fix --- src/frontend-common/common_host_interface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend-common/common_host_interface.cpp b/src/frontend-common/common_host_interface.cpp index d4aaa9f67..2ca9e88eb 100644 --- a/src/frontend-common/common_host_interface.cpp +++ b/src/frontend-common/common_host_interface.cpp @@ -742,7 +742,7 @@ bool CommonHostInterface::SaveUndoLoadState() return false; } - Log_InfoPrintf("Saved undo load state: % " PRIu64 " bytes", m_undo_load_state->GetSize()); + Log_InfoPrintf("Saved undo load state: %" PRIu64 " bytes", m_undo_load_state->GetSize()); return true; }