From: Eli Zaretskii Date: Sat, 11 Dec 2021 08:51:09 +0000 (+0200) Subject: Fix a typo in sqlite.c X-Git-Tag: emacs-29.0.90~3604^2~6 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=6c81683a2791a1a08e4abe9b670f47b2b4037eff;p=emacs.git Fix a typo in sqlite.c * src/sqlite.c (Fsqlite_select): Fix a typo in arguments to make_sqlite. --- 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; }