summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2021-01-07 15:12:59 +0300
committerGeorge Hazan <ghazan@miranda.im>2021-01-07 15:12:59 +0300
commitfec1058c1cfc1d0d1459c7d030458608ae333c26 (patch)
treefa0aa1bfa52dc5cd8089f1f6e45d835e20034fd3
parentac0cd7a6c7210efa43cf6823e9b68f98ebf13e79 (diff)
compilation fix
-rwxr-xr-xplugins/Dbx_sqlite/src/dbcontacts.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Dbx_sqlite/src/dbcontacts.cpp b/plugins/Dbx_sqlite/src/dbcontacts.cpp
index ca3680c159..628c479860 100755
--- a/plugins/Dbx_sqlite/src/dbcontacts.cpp
+++ b/plugins/Dbx_sqlite/src/dbcontacts.cpp
@@ -110,7 +110,7 @@ LONG CDbxSQLite::DeleteContact(MCONTACT hContact)
stmt = ctc_stmts_prep[SQL_CTC_STMT_DELETEEVENTS_SRT];
sqlite3_bind_int64(stmt, 1, hContact);
- int rc = sqlite3_step(stmt);
+ rc = sqlite3_step(stmt);
assert(rc == SQLITE_DONE);
sqlite3_reset(stmt);
if (rc != SQLITE_DONE)