From 999bd396d05e1029d45aa779b773de06b6064a60 Mon Sep 17 00:00:00 2001 From: HanishKVC Date: Thu, 16 May 2024 23:49:38 +0530 Subject: [PATCH] ChatON: forgot to get c string format --- common/chaton.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/chaton.hpp b/common/chaton.hpp index 9842ff393..2ea9fed7a 100644 --- a/common/chaton.hpp +++ b/common/chaton.hpp @@ -465,7 +465,7 @@ public: std::string tmpl = tmplId; if (!tmpl_exists(tmpl)) { tmpl = tmplFallback; - LDBUG_LN("DBUG:%s:Tmpl [%s] missing, fallback to [%s]", __func__, tmplId, tmpl); + LDBUG_LN("DBUG:%s:Tmpl [%s] missing, fallback to [%s]", __func__, tmplId.c_str(), tmpl.c_str()); if (!tmpl_exists(tmpl)) { return false; }