diff options
author | George Hazan <ghazan@miranda.im> | 2021-04-25 15:35:39 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-04-25 15:35:39 +0300 |
commit | 68f68d7633596d9f39a0bd48f26732b24a2b5ee9 (patch) | |
tree | bd52f64f99547c84c98a413b7e2b6c2f07407ebd /plugins | |
parent | 9449b0587fa74976ff55828f5d850bc061e331b8 (diff) |
code cleaning
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/Dbx_sqlite/src/dbcrypt.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dbx_sqlite/src/dbcrypt.cpp b/plugins/Dbx_sqlite/src/dbcrypt.cpp index 5eee3f3c70..a59846f387 100644 --- a/plugins/Dbx_sqlite/src/dbcrypt.cpp +++ b/plugins/Dbx_sqlite/src/dbcrypt.cpp @@ -26,7 +26,7 @@ STDMETHODIMP_(BOOL) CDbxSQLite::ReadCryptoKey(MBinBuffer &buf) return FALSE; } - buf.append((BYTE*)sqlite3_column_blob(stmt, 0), sqlite3_column_bytes(stmt, 0)); + buf.append(sqlite3_column_blob(stmt, 0), sqlite3_column_bytes(stmt, 0)); sqlite3_reset(stmt); return TRUE; } |