uncrustify as demanded.
[oweals/gnunet.git] / src / sq / sq_prepare.c
index ab5ee09f54ad1f42a28636737079d4ae6633ec26..3df4b80bc8425d4565599ecc8c9a0ec78d135ff9 100644 (file)
@@ -1,22 +1,22 @@
 /*
-  This file is part of GNUnet
-  Copyright (C) 2018 GNUnet e.V.
+   This file is part of GNUnet
+   Copyright (C) 2018 GNUnet e.V.
 
-  GNUnet is free software: you can redistribute it and/or modify it
-  under the terms of the GNU Affero General Public License as published
-  by the Free Software Foundation, either version 3 of the License,
-  or (at your option) any later version.
+   GNUnet is free software: you can redistribute it and/or modify it
+   under the terms of the GNU Affero General Public License as published
+   by the Free Software Foundation, either version 3 of the License,
+   or (at your option) any later version.
 
-  GNUnet is distributed in the hope that it will be useful, but
-  WITHOUT ANY WARRANTY; without even the implied warranty of
-  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
-  Affero General Public License for more details.
-  You should have received a copy of the GNU Affero General Public License
-  along with this program.  If not, see <http://www.gnu.org/licenses/>.
+   GNUnet is distributed in the hope that it will be useful, but
+   WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+   Affero General Public License for more details.
+
+   You should have received a copy of the GNU Affero General Public License
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
      SPDX-License-Identifier: AGPL3.0-or-later
-*/
+ */
 /**
  * @file sq/sq_prepare.c
  * @brief helper functions for executing SQL statements
@@ -34,8 +34,8 @@
  * @return initialized struct
  */
 struct GNUNET_SQ_PrepareStatement
-GNUNET_SQ_make_prepare (const char *sql,
-                        sqlite3_stmt **pstmt)
+GNUNET_SQ_make_prepare(const char *sql,
+                       sqlite3_stmt **pstmt)
 {
   struct GNUNET_SQ_PrepareStatement ps = {
     .sql = sql,
@@ -56,29 +56,29 @@ GNUNET_SQ_make_prepare (const char *sql,
  * @return #GNUNET_OK on success
  */
 int
-GNUNET_SQ_prepare (sqlite3 *dbh,
-                   const struct GNUNET_SQ_PrepareStatement *ps)
+GNUNET_SQ_prepare(sqlite3 *dbh,
+                  const struct GNUNET_SQ_PrepareStatement *ps)
 {
-  for (unsigned int i=0;NULL != ps[i].sql;i++)
-  {
-    const char *epos = NULL;
-    int ret;
-
-    if (SQLITE_OK !=
-        (ret = sqlite3_prepare_v2 (dbh,
-                                   ps[i].sql,
-                                   strlen (ps[i].sql),
-                                   ps[i].pstmt,
-                                   &epos)))
+  for (unsigned int i = 0; NULL != ps[i].sql; i++)
     {
-      GNUNET_log (GNUNET_ERROR_TYPE_ERROR,
-                  "Failed to prepare SQL `%s': error %d at %s\n",
-                  ps[i].sql,
-                  ret,
-                  epos);
-      return GNUNET_SYSERR;
+      const char *epos = NULL;
+      int ret;
+
+      if (SQLITE_OK !=
+          (ret = sqlite3_prepare_v2(dbh,
+                                    ps[i].sql,
+                                    strlen(ps[i].sql),
+                                    ps[i].pstmt,
+                                    &epos)))
+        {
+          GNUNET_log(GNUNET_ERROR_TYPE_ERROR,
+                     "Failed to prepare SQL `%s': error %d at %s\n",
+                     ps[i].sql,
+                     ret,
+                     epos);
+          return GNUNET_SYSERR;
+        }
     }
-  }
   return GNUNET_OK;
 }