From f0fe0a19624c0663d0dcb5909ef87f5168fd0d93 Mon Sep 17 00:00:00 2001 From: "Scott E. Graves" Date: Thu, 17 Oct 2024 14:41:01 -0500 Subject: [PATCH] fix --- support/include/utils/db/sqlite/db_common.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/support/include/utils/db/sqlite/db_common.hpp b/support/include/utils/db/sqlite/db_common.hpp index 0b2dd9c2..5669b6ba 100644 --- a/support/include/utils/db/sqlite/db_common.hpp +++ b/support/include/utils/db/sqlite/db_common.hpp @@ -31,7 +31,7 @@ using db_types_t = std::variant; struct sqlite3_deleter { void operator()(sqlite3 *db3) const { if (db3 != nullptr) { - sqlite3_close_v2(db3); + sqlite3_close(db3); } } };