From: Lars Ingebrigtsen Date: Sun, 9 Oct 2022 15:06:46 +0000 (+0200) Subject: Fix some indentation in Fsqlite_execute X-Git-Tag: emacs-29.0.90~1616^2~675 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=7ab6ec364d56c292de2d6294e9424824866691b3;p=emacs.git Fix some indentation in Fsqlite_execute * src/sqlite.c (Fsqlite_execute): Fix indentation. --- diff --git a/src/sqlite.c b/src/sqlite.c index ababa73b99f..7af3760eb4c 100644 --- 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);