commit 7004a9f8c13ae58b777217d17decb4adf5d39b03 parent d78c046e7b06044fd06c9e84f3370a6de8c12b56 Author: Christian Grothoff <christian@grothoff.org> Date: Tue, 21 Nov 2023 14:27:40 +0100 fix includes Diffstat:
| M | src/pq/pq_query_helper.c | | | 20 | +++++++++----------- |
1 file changed, 9 insertions(+), 11 deletions(-)
diff --git a/src/pq/pq_query_helper.c b/src/pq/pq_query_helper.c @@ -20,12 +20,10 @@ * @author Florian Dold * @author Christian Grothoff */ -#include "platform.h" #include <gnunet/gnunet_common.h> #include <gnunet/gnunet_util_lib.h> #include <gnunet/gnunet_pq_lib.h> -#include "taler_pq_lib.h" -#include "pq_common.h" +#include <taler/taler_pq_lib.h> /** @@ -840,14 +838,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 */ {