From 1859c0ac9c1f8be39afd545017594aac48cc8160 Mon Sep 17 00:00:00 2001 From: "Nathan S. Evans" Date: Mon, 30 Aug 2010 18:42:37 +0000 Subject: [PATCH] wrong types --- src/testing/testing_group.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/testing/testing_group.c b/src/testing/testing_group.c index f0786db7d..2d17ecb62 100644 --- a/src/testing/testing_group.c +++ b/src/testing/testing_group.c @@ -3026,7 +3026,7 @@ GNUNET_TESTING_get_statistics (struct GNUNET_TESTING_PeerGroup *pg, GNUNET_TESTING_STATISTICS_Iterator proc, void *cls) { struct StatsIterateContext *stats_context; - struct CoreContext *core_ctx; + struct StatsCoreContext *core_ctx; unsigned int i; unsigned int total_count; @@ -3041,7 +3041,7 @@ GNUNET_TESTING_get_statistics (struct GNUNET_TESTING_PeerGroup *pg, if (pg->peers[i].daemon->running == GNUNET_YES) { /* Allocate one core context per core we need to connect to */ - core_ctx = GNUNET_malloc(sizeof(struct CoreContext)); + core_ctx = GNUNET_malloc(sizeof(struct StatsCoreContext)); core_ctx->daemon = pg->peers[i].daemon; /* Set back pointer to topology iteration context */ core_ctx->iter_context = stats_context; -- 2.25.1