diff options
author | George Hazan <ghazan@miranda.im> | 2021-01-07 15:12:59 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2021-01-07 15:12:59 +0300 |
commit | fec1058c1cfc1d0d1459c7d030458608ae333c26 (patch) | |
tree | fa0aa1bfa52dc5cd8089f1f6e45d835e20034fd3 | |
parent | ac0cd7a6c7210efa43cf6823e9b68f98ebf13e79 (diff) |
compilation fix
-rwxr-xr-x | plugins/Dbx_sqlite/src/dbcontacts.cpp | 2 |
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) |