diff options
author | George Hazan <ghazan@miranda.im> | 2021-04-13 20:44:29 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-04-13 20:44:29 +0300 |
commit | 216f8c18eaafa9df87bb7c1701bb3ae0c19ea4b9 (patch) | |
tree | 90e730d40edafd776737a443e8d5ae009557fd83 /plugins | |
parent | 2961e3abc63fcb1f61a83dbaf4221a569af92e08 (diff) |
fixes #2845 (DbChecker: chinese on sqlire check)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Dbx_sqlite/src/dbcheck.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dbx_sqlite/src/dbcheck.cpp b/plugins/Dbx_sqlite/src/dbcheck.cpp index 9d444c2b8d..a1c94abf29 100644 --- a/plugins/Dbx_sqlite/src/dbcheck.cpp +++ b/plugins/Dbx_sqlite/src/dbcheck.cpp @@ -84,7 +84,7 @@ int CDbxSQLite::CheckPhase4() auto *szModule = (const char *)sqlite3_column_text(pQuery, 1); auto *szSetting = (const char *)sqlite3_column_text(pQuery, 1); - cb->pfnAddLogMessage(STATUS_ERROR, CMStringW(FORMAT, TranslateT("Orphaned setting [%s:%s] with wrong contact ID %d, deleting"), szModule, szSetting, hContact)); + cb->pfnAddLogMessage(STATUS_ERROR, CMStringW(FORMAT, TranslateT("Orphaned setting [%S:%S] with wrong contact ID %d, deleting"), szModule, szSetting, hContact)); DeleteContactSettingWorker(hContact, szModule, szSetting); } |