Avoid a compilation warning

This commit is contained in:
Pierre Pronchery 2019-08-31 03:06:54 +02:00
parent 51c8f606fe
commit 2d73113933

View File

@ -149,6 +149,8 @@ static SQLite3Statement * _sqlite3_prepare_new(SQLite3 * sqlite3,
static void _sqlite3_prepare_delete(SQLite3 * sqlite3,
SQLite3Statement * statement)
{
(void) sqlite3;
/* XXX ignore errors */
sqlite3_finalize(statement->stmt);
object_delete(statement);