use sqlite3_close() instead of sqlite3_close_v2()

This allows using sqlite3 v3.7.13, used by our current debian installation in
the test setup. _v2 was added in v3.7.14.
This commit is contained in:
Neels Hofmeyr 2016-02-29 16:42:00 +01:00
parent 49b83d8f67
commit 5b38312b92
1 changed files with 1 additions and 1 deletions

View File

@ -317,7 +317,7 @@ void meas_db_close(struct meas_db_state *st)
sqlite3_finalize(st->stmt_ins_mr);
sqlite3_finalize(st->stmt_ins_ud);
sqlite3_finalize(st->stmt_upd_mr);
sqlite3_close_v2(st->db);
sqlite3_close(st->db);
talloc_free(st);