X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/3a1ea70a418f393ca1677074e928c664022295bd..e080adacaf1ba847ad467f5b8d21da385636ed3c:/examples/s4u/dht-kademlia/node.cpp?ds=sidebyside diff --git a/examples/s4u/dht-kademlia/node.cpp b/examples/s4u/dht-kademlia/node.cpp index c119239282..86130d5713 100644 --- a/examples/s4u/dht-kademlia/node.cpp +++ b/examples/s4u/dht-kademlia/node.cpp @@ -55,7 +55,7 @@ bool Node::join(unsigned int known_id) simgrid::s4u::this_actor::sleep_for(1); } while (not got_answer); - /* Second step: Send a FIND_NODE to a a random node in buckets */ + /* Second step: Send a FIND_NODE to a random node in buckets */ unsigned int bucket_id = table.findBucket(known_id)->getId(); xbt_assert(bucket_id <= IDENTIFIER_SIZE); for (unsigned int i = 0; ((bucket_id > i) || (bucket_id + i) <= IDENTIFIER_SIZE) && i < JOIN_BUCKETS_QUERIES; i++) {