aboutsummaryrefslogtreecommitdiff
path: root/src/dht/gnunet-service-dht_neighbours.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2022-08-20 14:45:30 +0200
committerChristian Grothoff <christian@grothoff.org>2022-08-20 14:45:30 +0200
commit12bd374fa9456bedfedf2a0e3a77d284b7f80cec (patch)
tree93d3dc0483d6a9ad0a8967db6d417a727997b751 /src/dht/gnunet-service-dht_neighbours.c
parent5882a3a56708bf058e918166af9f2c4df66e2e29 (diff)
downloadgnunet-12bd374fa9456bedfedf2a0e3a77d284b7f80cec.tar.gz
gnunet-12bd374fa9456bedfedf2a0e3a77d284b7f80cec.zip
-remove unnecessary cast
Diffstat (limited to 'src/dht/gnunet-service-dht_neighbours.c')
-rw-r--r--src/dht/gnunet-service-dht_neighbours.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dht/gnunet-service-dht_neighbours.c b/src/dht/gnunet-service-dht_neighbours.c
index 376ac5092..778bf7ce0 100644
--- a/src/dht/gnunet-service-dht_neighbours.c
+++ b/src/dht/gnunet-service-dht_neighbours.c
@@ -2049,7 +2049,7 @@ handle_dht_p2p_put (void *cls,
2049 GNUNET_CONTAINER_bloomfilter_test (bf, 2049 GNUNET_CONTAINER_bloomfilter_test (bf,
2050 &peer->phash)); 2050 &peer->phash));
2051 /* extend 'put path' by sender */ 2051 /* extend 'put path' by sender */
2052 bd.put_path = (const struct GNUNET_DHT_PathElement *) pp; 2052 bd.put_path = pp;
2053 bd.put_path_length = putlen + 1; 2053 bd.put_path_length = putlen + 1;
2054 if (has_path) 2054 if (has_path)
2055 { 2055 {