From d6da7d33dc20e35733527315d4ea76649370c00e Mon Sep 17 00:00:00 2001 From: Julius Bünger Date: Mon, 8 Apr 2019 14:14:21 +0200 Subject: RPS api: Fix type of callback and handle --- src/rps/rps_api.c | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/rps/rps_api.c b/src/rps/rps_api.c index 83dff27e8..fd0c12f47 100644 --- 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); } -- cgit v1.2.3