projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cabb049
)
Fix a typo in sqlite.c
author
Eli Zaretskii
<eliz@gnu.org>
Sat, 11 Dec 2021 08:51:09 +0000
(10:51 +0200)
committer
Eli 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
patch
|
blob
|
history
diff --git
a/src/sqlite.c
b/src/sqlite.c
index c1f3e7b599f92c40d7d8248f36d45b69738ea9ea..aea79406aa647ff779ae6c798a4a2e0557853fdd 100644
(file)
--- 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,
s
db, stmt, XSQLITE (db)->name);
goto exit;
}