From ae2f1e61172a200eeb83d797586b2a5210e27f1c Mon Sep 17 00:00:00 2001
From: Rye Mutt <rye@alchemyviewer.org>
Date: Sat, 7 Nov 2020 02:01:57 -0500
Subject: [PATCH] Fix variadic warning by changing an llformat to an
 absl::StrFormat

---
 indra/newview/alaoengine.cpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/indra/newview/alaoengine.cpp b/indra/newview/alaoengine.cpp
index e8e803fbc65..30b4f7bbd86 100644
--- a/indra/newview/alaoengine.cpp
+++ b/indra/newview/alaoengine.cpp
@@ -1891,12 +1891,12 @@ void ALAOEngine::processImport(bool aFromTimer)
 			if (state->mCycleTime)
 			{
 				const std::string oldName = state->mName;
-				state->mName = llformat("%s%d",oldName + ":CT",state->mCycleTime);
+				state->mName = absl::StrFormat("%s%d",oldName + ":CT",state->mCycleTime);
 			}
 			if (state->mCycle)
 			{
 				const std::string oldName = state->mName;
-				state->mName = llformat("%s%s", oldName, ":CY");
+				state->mName = absl::StrFormat("%s%s", oldName, ":CY");
 			}
 			allComplete = false;
 			LL_DEBUGS("AOEngine") << "state " << state->mName << " still has animations to link." << LL_ENDL;
-- 
GitLab