From: Nathan S. Evans Date: Mon, 30 Aug 2010 18:42:37 +0000 (+0000) Subject: wrong types X-Git-Tag: initial-import-from-subversion-38251~20513 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=1859c0ac9c1f8be39afd545017594aac48cc8160;p=oweals%2Fgnunet.git wrong types --- 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;