X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/b8d0299b310680eeb9b50d0249fe5bc810aed7e4..b37b5defb0915827718fa485b4b8444925ec009d:/examples/msg/dht-chord/dht-chord.c?ds=sidebyside diff --git a/examples/msg/dht-chord/dht-chord.c b/examples/msg/dht-chord/dht-chord.c index 29a25a0020..57ae2ff013 100644 --- a/examples/msg/dht-chord/dht-chord.c +++ b/examples/msg/dht-chord/dht-chord.c @@ -563,7 +563,7 @@ void stabilize(node_t node) set_finger(node, 0, candidate_id); } if (successor_id != node->id) { - remote_notify(node, successor_id, node->id); + remote_notify(successor_id, node->id); } } @@ -582,7 +582,7 @@ void notify(node_t node, int predecessor_candidate_id) { } /* Notifies a remote node that its predecessor may have changed. */ -void remote_notify(node_t node, int notify_id, int predecessor_candidate_id) { +void remote_notify(int notify_id, int predecessor_candidate_id) { task_data_t req_data = xbt_new0(s_task_data_t, 1); req_data->type = TASK_NOTIFY;