aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorChristian Grothoff <grothoff@gnunet.org>2024-08-18 23:10:55 +0200
committerChristian Grothoff <grothoff@gnunet.org>2024-08-18 23:10:55 +0200
commit83a2457555d515b73ad1d4d126d560af9d300866 (patch)
tree0d6fd38172f20ff835d15d4c10ef43f31f06431e /src
parentfced642aea788ca3b00bbeec9ab8665772da8082 (diff)
downloadexchange-83a2457555d515b73ad1d4d126d560af9d300866.tar.xz
-fix warning
Diffstat (limited to 'src')
-rw-r--r--src/auditordb/test_auditordb_checkpoints.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/src/auditordb/test_auditordb_checkpoints.c b/src/auditordb/test_auditordb_checkpoints.c
index f9bb83142..639868867 100644
--- a/src/auditordb/test_auditordb_checkpoints.c
+++ b/src/auditordb/test_auditordb_checkpoints.c
@@ -21,7 +21,6 @@
#include "platform.h"
#include <gnunet/gnunet_common.h>
#include <gnunet/gnunet_db_lib.h>
-#include "taler_auditordb_lib.h"
#include "taler_auditordb_plugin.h"
/**
@@ -33,24 +32,24 @@
* Report line of error if @a cond is true, and jump to label "drop".
*/
#define FAILIF(cond) \
- do { \
- if (! (cond)) { break;} \
- GNUNET_break (0); \
- goto drop; \
- } while (0)
+ do { \
+ if (! (cond)) { break;} \
+ GNUNET_break (0); \
+ goto drop; \
+ } while (0)
/**
* Initializes @a ptr with random data.
*/
#define RND_BLK(ptr) \
- GNUNET_CRYPTO_random_block (GNUNET_CRYPTO_QUALITY_WEAK, ptr, \
- sizeof (*ptr))
+ GNUNET_CRYPTO_random_block (GNUNET_CRYPTO_QUALITY_WEAK, ptr, \
+ sizeof (*ptr))
/**
* Initializes @a ptr with zeros.
*/
#define ZR_BLK(ptr) \
- memset (ptr, 0, sizeof (*ptr))
+ memset (ptr, 0, sizeof (*ptr))
/**