diff options
author | Eli Zaretskii <eliz@gnu.org> | 2021-12-11 10:51:09 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-12-11 10:51:09 +0200 |
commit | 6c81683a2791a1a08e4abe9b670f47b2b4037eff (patch) | |
tree | ad4df8607e36e3ee1e621dd3ded0050f8da87d73 | |
parent | cabb049a5000c62d31628af031b7fb8ae76c9e57 (diff) | |
download | emacs-6c81683a2791a1a08e4abe9b670f47b2b4037eff.tar.gz emacs-6c81683a2791a1a08e4abe9b670f47b2b4037eff.tar.bz2 emacs-6c81683a2791a1a08e4abe9b670f47b2b4037eff.zip |
Fix a typo in sqlite.c
* src/sqlite.c (Fsqlite_select): Fix a typo in arguments to
make_sqlite.
-rw-r--r-- | src/sqlite.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |