projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
28904d7
)
Fix some indentation in Fsqlite_execute
author
Lars Ingebrigtsen
<larsi@gnus.org>
Sun, 9 Oct 2022 15:06:46 +0000
(17:06 +0200)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Mon, 10 Oct 2022 08:35:46 +0000
(10:35 +0200)
* src/sqlite.c (Fsqlite_execute): Fix indentation.
src/sqlite.c
patch
|
blob
|
history
diff --git
a/src/sqlite.c
b/src/sqlite.c
index ababa73b99f1339fe3c2e72fe7912585ae1e5d29..7af3760eb4c5b22d7560591e44c5dd15a92ac39f 100644
(file)
--- a/
src/sqlite.c
+++ b/
src/sqlite.c
@@
-415,14
+415,15
@@
Value is the number of affected rows. */)
}
/* Bind ? values. */
- if (!NILP (values)) {
- const char *err = bind_values (sdb, stmt, values);
- if (err != NULL)
- {
- errmsg = err;
- goto exit;
- }
- }
+ if (!NILP (values))
+ {
+ const char *err = bind_values (sdb, stmt, values);
+ if (err != NULL)
+ {
+ errmsg = err;
+ goto exit;
+ }
+ }
ret = sqlite3_step (stmt);
sqlite3_finalize (stmt);