aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2021-11-21 15:18:37 +0100
committerChristian Grothoff <christian@grothoff.org>2021-11-21 15:18:37 +0100
commit5cbf93d3c6c7a058d9a7893e2a3583a2b5b30d0e (patch)
tree3f577dc6e56fc2f544e3b899ed0dfd31ff6b366f
parentaae42f85cf3192581e758fa70d461137a738efb4 (diff)
downloadgnunet-5cbf93d3c6c7a058d9a7893e2a3583a2b5b30d0e.tar.gz
gnunet-5cbf93d3c6c7a058d9a7893e2a3583a2b5b30d0e.zip
-fix rtype
-rw-r--r--src/include/gnunet_pq_lib.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/include/gnunet_pq_lib.h b/src/include/gnunet_pq_lib.h
index 549ce3638..6a374f7e2 100644
--- a/src/include/gnunet_pq_lib.h
+++ b/src/include/gnunet_pq_lib.h
@@ -385,7 +385,9 @@ GNUNET_PQ_result_spec_variable_size (const char *name,
385 * @return array entry for the result specification to use 385 * @return array entry for the result specification to use
386 */ 386 */
387struct GNUNET_PQ_ResultSpec 387struct GNUNET_PQ_ResultSpec
388GNUNET_PQ_result_spec_fixed_size (const char *name, void *dst, size_t dst_size); 388GNUNET_PQ_result_spec_fixed_size (const char *name,
389 void *dst,
390 size_t dst_size);
389 391
390 392
391/** 393/**
@@ -407,7 +409,8 @@ GNUNET_PQ_result_spec_fixed_size (const char *name, void *dst, size_t dst_size);
407 * @return array entry for the result specification to use 409 * @return array entry for the result specification to use
408 */ 410 */
409struct GNUNET_PQ_ResultSpec 411struct GNUNET_PQ_ResultSpec
410GNUNET_PQ_result_spec_string (const char *name, char **dst); 412GNUNET_PQ_result_spec_string (const char *name,
413 char **dst);
411 414
412 415
413/** 416/**
@@ -718,7 +721,7 @@ GNUNET_PQ_make_prepare (const char *name,
718 * @return #GNUNET_OK on success, 721 * @return #GNUNET_OK on success,
719 * #GNUNET_SYSERR on error 722 * #GNUNET_SYSERR on error
720 */ 723 */
721int 724enum GNUNET_GenericReturnValue
722GNUNET_PQ_prepare_statements (struct GNUNET_PQ_Context *db, 725GNUNET_PQ_prepare_statements (struct GNUNET_PQ_Context *db,
723 const struct GNUNET_PQ_PreparedStatement *ps); 726 const struct GNUNET_PQ_PreparedStatement *ps);
724 727