aboutsummaryrefslogtreecommitdiff
path: root/src/block/plugin_block_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/block/plugin_block_test.c')
-rw-r--r--src/block/plugin_block_test.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/block/plugin_block_test.c b/src/block/plugin_block_test.c
index 05d379387..2e404bbc2 100644
--- a/src/block/plugin_block_test.c
+++ b/src/block/plugin_block_test.c
@@ -46,7 +46,6 @@
46 * 46 *
47 * @param ctx block context in which the block group is created 47 * @param ctx block context in which the block group is created
48 * @param type type of the block for which we are creating the group 48 * @param type type of the block for which we are creating the group
49 * @param nonce random value used to seed the group creation
50 * @param raw_data optional serialized prior state of the group, NULL if unavailable/fresh 49 * @param raw_data optional serialized prior state of the group, NULL if unavailable/fresh
51 * @param raw_data_size number of bytes in @a raw_data, 0 if unavailable/fresh 50 * @param raw_data_size number of bytes in @a raw_data, 0 if unavailable/fresh
52 * @param va variable arguments specific to @a type 51 * @param va variable arguments specific to @a type
@@ -56,7 +55,6 @@
56static struct GNUNET_BLOCK_Group * 55static struct GNUNET_BLOCK_Group *
57block_plugin_test_create_group (void *cls, 56block_plugin_test_create_group (void *cls,
58 enum GNUNET_BLOCK_Type type, 57 enum GNUNET_BLOCK_Type type,
59 uint32_t nonce,
60 const void *raw_data, 58 const void *raw_data,
61 size_t raw_data_size, 59 size_t raw_data_size,
62 va_list va) 60 va_list va)
@@ -83,7 +81,6 @@ block_plugin_test_create_group (void *cls,
83 bf_size, 81 bf_size,
84 BLOOMFILTER_K, 82 BLOOMFILTER_K,
85 type, 83 type,
86 nonce,
87 raw_data, 84 raw_data,
88 raw_data_size); 85 raw_data_size);
89} 86}