]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix some indentation in Fsqlite_execute
authorLars Ingebrigtsen <larsi@gnus.org>
Sun, 9 Oct 2022 15:06:46 +0000 (17:06 +0200)
committerLars 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

index ababa73b99f1339fe3c2e72fe7912585ae1e5d29..7af3760eb4c5b22d7560591e44c5dd15a92ac39f 100644 (file)
@@ -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);