aboutsummaryrefslogtreecommitdiff
path: root/src/datacache
diff options
context:
space:
mode:
authorWillow Liquorice <willow@howhill.com>2022-09-07 21:33:50 +0100
committerWillow Liquorice <willow@howhill.com>2022-10-03 12:51:59 +0100
commit58888b24cc683c2d3a589b3a1bff8bab9b9912f6 (patch)
tree046750096eb032427715a439cf07b2ec3e04753b /src/datacache
parent77293658a0ae2dbfd613f81ae85bbfc326a26e3a (diff)
downloadgnunet-58888b24cc683c2d3a589b3a1bff8bab9b9912f6.tar.gz
gnunet-58888b24cc683c2d3a589b3a1bff8bab9b9912f6.zip
-DOC: Documentation cleanup pass through DATACACHE subsystem
Diffstat (limited to 'src/datacache')
-rw-r--r--src/datacache/plugin_datacache_postgres.c4
-rw-r--r--src/datacache/plugin_datacache_sqlite.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/src/datacache/plugin_datacache_postgres.c b/src/datacache/plugin_datacache_postgres.c
index b1f9a1b8e..e280ded6d 100644
--- a/src/datacache/plugin_datacache_postgres.c
+++ b/src/datacache/plugin_datacache_postgres.c
@@ -218,7 +218,7 @@ struct HandleResultContext
218 * 218 *
219 * @param cls closure of type `struct HandleResultContext` 219 * @param cls closure of type `struct HandleResultContext`
220 * @param result the postgres result 220 * @param result the postgres result
221 * @param num_result the number of results in @a result 221 * @param num_results the number of results in @a result
222 */ 222 */
223static void 223static void
224handle_results (void *cls, 224handle_results (void *cls,
@@ -440,7 +440,7 @@ struct ExtractResultContext
440 * 440 *
441 * @param cls closure with the `struct ExtractResultContext` 441 * @param cls closure with the `struct ExtractResultContext`
442 * @param result the postgres result 442 * @param result the postgres result
443 * @param num_result the number of results in @a result 443 * @param num_results the number of results in @a result
444 */ 444 */
445static void 445static void
446extract_result_cb (void *cls, 446extract_result_cb (void *cls,
diff --git a/src/datacache/plugin_datacache_sqlite.c b/src/datacache/plugin_datacache_sqlite.c
index 0753d87ce..1c6f24a82 100644
--- a/src/datacache/plugin_datacache_sqlite.c
+++ b/src/datacache/plugin_datacache_sqlite.c
@@ -161,7 +161,7 @@ struct Plugin
161 * @brief Prepare a SQL statement 161 * @brief Prepare a SQL statement
162 * 162 *
163 * @param dbh database handle 163 * @param dbh database handle
164 * @param zsql SQL statement text 164 * @param zSql SQL statement text
165 * @param[out] ppStmt set to the prepared statement 165 * @param[out] ppStmt set to the prepared statement
166 * @return 0 on success 166 * @return 0 on success
167 */ 167 */