aboutsummaryrefslogtreecommitdiff
path: root/src/consensus/test_consensus_api.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/consensus/test_consensus_api.c')
-rw-r--r--src/consensus/test_consensus_api.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/consensus/test_consensus_api.c b/src/consensus/test_consensus_api.c
index 18c5b3b31..0073267f8 100644
--- a/src/consensus/test_consensus_api.c
+++ b/src/consensus/test_consensus_api.c
@@ -67,11 +67,9 @@ insert_done (void *cls, int success)
67 * Signature of the main function of a task. 67 * Signature of the main function of a task.
68 * 68 *
69 * @param cls closure 69 * @param cls closure
70 * @param tc context information (why was this task triggered now)
71 */ 70 */
72static void 71static void
73on_shutdown (void *cls, 72on_shutdown (void *cls)
74 const struct GNUNET_SCHEDULER_TaskContext *tc)
75{ 73{
76 if (NULL != consensus) 74 if (NULL != consensus)
77 { 75 {
@@ -121,4 +119,3 @@ main (int argc, char **argv)
121 &run, NULL); 119 &run, NULL);
122 return ret; 120 return ret;
123} 121}
124