ChatON: forgot to get c string format
This commit is contained in:
parent
0cbfd40f18
commit
999bd396d0
1 changed files with 1 additions and 1 deletions
|
@ -465,7 +465,7 @@ public:
|
||||||
std::string tmpl = tmplId;
|
std::string tmpl = tmplId;
|
||||||
if (!tmpl_exists(tmpl)) {
|
if (!tmpl_exists(tmpl)) {
|
||||||
tmpl = tmplFallback;
|
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)) {
|
if (!tmpl_exists(tmpl)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue