[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gnunet] branch master updated: NEWS: - - tighten signature, no semantic
From: |
gnunet |
Subject: |
[gnunet] branch master updated: NEWS: - - tighten signature, no semantic change. |
Date: |
Thu, 14 Sep 2023 16:21:08 +0200 |
This is an automated email from the git hooks/post-receive script.
grothoff pushed a commit to branch master
in repository gnunet.
The following commit(s) were added to refs/heads/master by this push:
new f29339468 NEWS: - - tighten signature, no semantic change.
f29339468 is described below
commit f2933946810d6f306dc28683c6cc961ad92a8234
Author: Christian Grothoff <christian@grothoff.org>
AuthorDate: Thu Sep 14 16:19:28 2023 +0200
NEWS: -
- tighten signature, no semantic change.
---
contrib/gana | 2 +-
contrib/sphinx | 2 +-
src/include/gnunet_pq_lib.h | 2 +-
src/pq/pq_query_helper.c | 18 +++++++++---------
4 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/contrib/gana b/contrib/gana
index c9bda2187..c1dc2dc97 160000
--- a/contrib/gana
+++ b/contrib/gana
@@ -1 +1 @@
-Subproject commit c9bda21875ea1775f88b71de735d527132e45922
+Subproject commit c1dc2dc975742c929a523c22d91f7d4f82787230
diff --git a/contrib/sphinx b/contrib/sphinx
index 0cccef450..9c5b9d904 160000
--- a/contrib/sphinx
+++ b/contrib/sphinx
@@ -1 +1 @@
-Subproject commit 0cccef450b037a48170402117f7d3b6c0a4272af
+Subproject commit 9c5b9d9040d21542eff792e26624cf9669b127aa
diff --git a/src/include/gnunet_pq_lib.h b/src/include/gnunet_pq_lib.h
index 7c6deb09d..15af66b5d 100644
--- a/src/include/gnunet_pq_lib.h
+++ b/src/include/gnunet_pq_lib.h
@@ -382,7 +382,7 @@ GNUNET_PQ_query_param_array_string (
struct GNUNET_PQ_QueryParam
GNUNET_PQ_query_param_array_ptrs_string (
unsigned int num,
- const char *elements[],
+ const char *elements[static num],
struct GNUNET_PQ_Context *db);
diff --git a/src/pq/pq_query_helper.c b/src/pq/pq_query_helper.c
index 0350ad336..1e2f7a965 100644
--- a/src/pq/pq_query_helper.c
+++ b/src/pq/pq_query_helper.c
@@ -675,14 +675,14 @@ qconv_array (
same_sized = (0 != meta->same_size);
#define RETURN_UNLESS(cond) \
- do { \
- if (! (cond)) \
- { \
- GNUNET_break ((cond)); \
- noerror = false; \
- goto DONE; \
- } \
- } while (0)
+ do { \
+ if (! (cond)) \
+ { \
+ GNUNET_break ((cond)); \
+ noerror = false; \
+ goto DONE; \
+ } \
+ } while (0)
/* Calculate sizes and check bounds */
{
@@ -1174,7 +1174,7 @@ GNUNET_PQ_query_param_array_string (
struct GNUNET_PQ_QueryParam
GNUNET_PQ_query_param_array_ptrs_string (
unsigned int num,
- const char *elements[],
+ const char *elements[static num],
struct GNUNET_PQ_Context *db)
{
Oid oid;
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gnunet] branch master updated: NEWS: - - tighten signature, no semantic change.,
gnunet <=