Skip to content

Commit

Permalink
ChatON: forgot to get c string format
Browse files Browse the repository at this point in the history
  • Loading branch information
hanishkvc committed May 16, 2024
1 parent 0cbfd40 commit 999bd39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/chaton.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -465,7 +465,7 @@ class ChatTemplates : public GroupKV {
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;
}
Expand Down

0 comments on commit 999bd39

Please sign in to comment.