]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix a typo in sqlite.c
authorEli Zaretskii <eliz@gnu.org>
Sat, 11 Dec 2021 08:51:09 +0000 (10:51 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 11 Dec 2021 08:51:09 +0000 (10:51 +0200)
* src/sqlite.c (Fsqlite_select): Fix a typo in arguments to
make_sqlite.

src/sqlite.c

index c1f3e7b599f92c40d7d8248f36d45b69738ea9ea..aea79406aa647ff779ae6c798a4a2e0557853fdd 100644 (file)
@@ -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;
     }