From: Julius Bünger Date: Mon, 8 Apr 2019 12:14:21 +0000 (+0200) Subject: RPS api: Fix type of callback and handle X-Git-Tag: v0.11.4~218^2~6 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=d6da7d33dc20e35733527315d4ea76649370c00e;p=oweals%2Fgnunet.git RPS api: Fix type of callback and handle --- 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); }