From 92a0da34a8a3acf64e286d9a43f83c0ee39d4fef Mon Sep 17 00:00:00 2001 From: Adam Johnson Date: Thu, 29 May 2014 11:51:19 -0400 Subject: [PATCH] Fix invalid format string --- Sources/Plasma/PubUtilLib/plAgeLoader/plResPatcher.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Sources/Plasma/PubUtilLib/plAgeLoader/plResPatcher.cpp b/Sources/Plasma/PubUtilLib/plAgeLoader/plResPatcher.cpp index 8fc2715c..0b290f39 100644 --- a/Sources/Plasma/PubUtilLib/plAgeLoader/plResPatcher.cpp +++ b/Sources/Plasma/PubUtilLib/plAgeLoader/plResPatcher.cpp @@ -124,7 +124,7 @@ void plResPatcher::OnProgressTick(uint64_t dl, uint64_t total, const plString& m fProgress->SetHowMuch(dl); } - plString status = plFormat("%s / %s", + plString status = plFormat("{} / {}", plFileSystem::ConvertFileSize(dl), plFileSystem::ConvertFileSize(total) );