From 5a91508050e06e005d79e286e803202f39a8d261 Mon Sep 17 00:00:00 2001 From: emanuel Date: Thu, 20 Oct 2022 16:21:28 +0100 Subject: [PATCH] VCM: change intersection detected function name --- src/vcm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vcm.c b/src/vcm.c index d1cfc9e..3cf9d82 100644 --- a/src/vcm.c +++ b/src/vcm.c @@ -240,7 +240,7 @@ static int vcm_check_handle_reply(VCM_t* vcm, mc_neighbour_s* neighbour) { return rv; } -static int vcm_check_intersection_detected(VCM_t* vcm, mc_neighbour_s* neighbour) { +static int intersection_detected(VCM_t* vcm, mc_neighbour_s* neighbour) { int rv = 0; @@ -540,7 +540,7 @@ int vcm_check(VCM_t* vcm) { trajectoryA[index].longitude/1.0e7, trajectoryA[index].timestamp - now); - vcm_check_intersection_detected(vcm, &coordination->neighbours[ni]); + intersection_detected(vcm, &coordination->neighbours[ni]); } } break;