summaryrefslogtreecommitdiff
path: root/dbd/apr_dbd_sqlite2.c
diff options
context:
space:
mode:
Diffstat (limited to 'dbd/apr_dbd_sqlite2.c')
-rw-r--r--dbd/apr_dbd_sqlite2.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dbd/apr_dbd_sqlite2.c b/dbd/apr_dbd_sqlite2.c
index af72b931f..44b536185 100644
--- a/dbd/apr_dbd_sqlite2.c
+++ b/dbd/apr_dbd_sqlite2.c
@@ -73,7 +73,7 @@ struct apr_dbd_prepared_t {
static apr_status_t free_table(void *data)
{
- sqlite_free_table(data);
+ sqlite_free_table(data);
return APR_SUCCESS;
}
@@ -159,8 +159,8 @@ static int dbd_sqlite_get_row(apr_pool_t * pool, apr_dbd_results_t * res,
}
/* Pointer magic explanation:
- * The sqlite result is an array such that the first res->sz elements are
- * the column names and each tuple follows afterwards
+ * The sqlite result is an array such that the first res->sz elements are
+ * the column names and each tuple follows afterwards
* ex: (from the sqlite2 documentation)
SELECT employee_name, login, host FROM users WHERE login LIKE * 'd%';