Change cosmetics - keep compiler happy
authorJulius Bünger <buenger@mytum.de>
Thu, 6 Sep 2018 01:15:41 +0000 (03:15 +0200)
committerJulius Bünger <buenger@mytum.de>
Thu, 6 Sep 2018 01:20:55 +0000 (03:20 +0200)
src/rps/gnunet-rps.c
src/rps/rps_api.c

index b3785a7334442611b0847d3381145764c5a06515..03b2c8ab77c6805cad082542dfc0df83fa5a4734 100644 (file)
@@ -63,6 +63,8 @@ static uint64_t num_view_updates;
 static void
 do_shutdown (void *cls)
 {
+  (void) cls;
+
   if (NULL != req_handle)
     GNUNET_RPS_request_cancel (req_handle);
   GNUNET_RPS_disconnect (rps_handle);
@@ -83,6 +85,7 @@ reply_handle (void *cls,
               const struct GNUNET_PeerIdentity *recv_peers)
 {
   uint64_t i;
+  (void) cls;
 
   req_handle = NULL;
   for (i = 0; i < n; i++)
@@ -108,6 +111,7 @@ view_update_handle (void *cls,
                     const struct GNUNET_PeerIdentity *recv_peers)
 {
   uint64_t i;
+  (void) cls;
 
   if (0 == n)
   {
@@ -148,6 +152,8 @@ run (void *cls,
 {
   static uint64_t num_peers;
   static struct GNUNET_PeerIdentity zero_pid;
+  (void) cls;
+  (void) cfgfile;
 
   rps_handle = GNUNET_RPS_connect (cfg);
   if (NULL == rps_handle)
index ca80e25e8e430c3c800a7b6e0c31b06e3145b531..ac462f3a03909dd901356f12ba1a07b0cd3ea012 100644 (file)
@@ -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) ||