diff options
author | Julius Bünger <buenger@mytum.de> | 2018-09-06 03:15:41 +0200 |
---|---|---|
committer | Julius Bünger <buenger@mytum.de> | 2018-09-06 03:20:55 +0200 |
commit | 2b1b981479da64d13d3ae8389964b029e9f268b6 (patch) | |
tree | d6b40690c231e398e4ab930657e440679981b829 /src/rps/rps_api.c | |
parent | 727f0d8a8735dd638ff2f714f19c8c23852b99ba (diff) |
Change cosmetics - keep compiler happy
Diffstat (limited to 'src/rps/rps_api.c')
-rw-r--r-- | src/rps/rps_api.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/rps/rps_api.c b/src/rps/rps_api.c index ca80e25e8..ac462f3a0 100644 --- a/src/rps/rps_api.c +++ b/src/rps/rps_api.c @@ -158,6 +158,7 @@ resend_requests_iterator (void *cls, uint32_t key, void *value) { const struct GNUNET_RPS_Handle *h = cls; const struct GNUNET_RPS_Request_Handle *req_handle = value; + (void) key; send_request (h, req_handle->id, req_handle->num_peers); return GNUNET_YES; /* continue iterating */ @@ -195,6 +196,7 @@ check_reply (void *cls, { uint16_t msize = ntohs (msg->header.size); uint32_t num_peers = ntohl (msg->num_peers); + (void) cls; msize -= sizeof (struct GNUNET_RPS_CS_ReplyMessage); if ( (msize / sizeof (struct GNUNET_PeerIdentity) != num_peers) || @@ -289,6 +291,7 @@ check_view_update (void *cls, { uint16_t msize = ntohs (msg->header.size); uint32_t num_peers = ntohl (msg->num_peers); + (void) cls; msize -= sizeof (struct GNUNET_RPS_CS_DEBUG_ViewReply); if ( (msize / sizeof (struct GNUNET_PeerIdentity) != num_peers) || |