From fec1058c1cfc1d0d1459c7d030458608ae333c26 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 7 Jan 2021 15:12:59 +0300 Subject: compilation fix --- plugins/Dbx_sqlite/src/dbcontacts.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/Dbx_sqlite/src/dbcontacts.cpp') 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) -- cgit v1.2.3