aboutsummaryrefslogtreecommitdiffstats
path: root/src/sqlite.c
diff options
context:
space:
mode:
authorEli Zaretskii2021-12-11 10:51:09 +0200
committerEli Zaretskii2021-12-11 10:51:09 +0200
commit6c81683a2791a1a08e4abe9b670f47b2b4037eff (patch)
treead4df8607e36e3ee1e621dd3ded0050f8da87d73 /src/sqlite.c
parentcabb049a5000c62d31628af031b7fb8ae76c9e57 (diff)
downloademacs-6c81683a2791a1a08e4abe9b670f47b2b4037eff.tar.gz
emacs-6c81683a2791a1a08e4abe9b670f47b2b4037eff.zip
Fix a typo in sqlite.c
* src/sqlite.c (Fsqlite_select): Fix a typo in arguments to make_sqlite.
Diffstat (limited to 'src/sqlite.c')
-rw-r--r--src/sqlite.c2
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
525 /* Return a handle to get the data. */ 525 /* Return a handle to get the data. */
526 if (EQ (return_type, Qset)) 526 if (EQ (return_type, Qset))
527 { 527 {
528 retval = make_sqlite (true, db, stmt, XSQLITE (db)->name); 528 retval = make_sqlite (true, sdb, stmt, XSQLITE (db)->name);
529 goto exit; 529 goto exit;
530 } 530 }
531 531