From 6c81683a2791a1a08e4abe9b670f47b2b4037eff Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 11 Dec 2021 10:51:09 +0200 Subject: [PATCH] Fix a typo in sqlite.c * src/sqlite.c (Fsqlite_select): Fix a typo in arguments to make_sqlite. --- src/sqlite.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sqlite.c b/src/sqlite.c index c1f3e7b599f..aea79406aa6 100644 --- a/src/sqlite.c +++ b/src/sqlite.c @@ -525,7 +525,7 @@ which means that we return a set object that can be queried with /* Return a handle to get the data. */ if (EQ (return_type, Qset)) { - retval = make_sqlite (true, db, stmt, XSQLITE (db)->name); + retval = make_sqlite (true, sdb, stmt, XSQLITE (db)->name); goto exit; } -- 2.39.5