From 5b38312b92607247afee1532d78ccc88f001c933 Mon Sep 17 00:00:00 2001 From: Neels Hofmeyr Date: Mon, 29 Feb 2016 16:42:00 +0100 Subject: 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. --- openbsc/src/utils/meas_db.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbsc/src/utils/meas_db.c b/openbsc/src/utils/meas_db.c index ea44cd922..2e70b313b 100644 --- a/openbsc/src/utils/meas_db.c +++ b/openbsc/src/utils/meas_db.c @@ -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); -- cgit v1.2.3