commit d6da7d33dc20e35733527315d4ea76649370c00e
parent 200d05b44a96d6fec00e28736038c838c679f650
Author: Julius Bünger <buenger@mytum.de>
Date: Mon, 8 Apr 2019 14:14:21 +0200
RPS api: Fix type of callback and handle
Diffstat:
1 file changed, 5 insertions(+), 7 deletions(-)
diff --git a/src/rps/rps_api.c b/src/rps/rps_api.c
@@ -383,16 +383,14 @@ peer_info_ready_cb (const struct GNUNET_PeerIdentity *peers,
double probability,
uint32_t num_observed)
{
- struct GNUNET_RPS_Request_Handle *rh = cls;
- (void) probability;
- (void) num_observed;
- uint32_t num_peers = 1;
+ struct GNUNET_RPS_Request_Handle_Single_Info *rh = cls;
rh->sampler_rh = NULL;
rh->ready_cb (rh->ready_cb_cls,
- num_peers,
- peers);
- GNUNET_RPS_request_cancel (rh);
+ peers,
+ probability,
+ num_observed);
+ GNUNET_RPS_request_single_info_cancel (rh);
}