From 2e7116b7684cca9c62c28af3c461812951c7764c Mon Sep 17 00:00:00 2001 From: Arnaud Giersch Date: Tue, 17 Apr 2018 07:30:40 +0200 Subject: [PATCH] Fix misleading parameter declaration. --- src/kernel/routing/TorusZone.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/kernel/routing/TorusZone.cpp b/src/kernel/routing/TorusZone.cpp index bc212e478f..72d0298bd9 100644 --- a/src/kernel/routing/TorusZone.cpp +++ b/src/kernel/routing/TorusZone.cpp @@ -15,7 +15,7 @@ XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_route_cluster_torus, surf_route_cluster, "Torus Routing part of surf"); -inline void rankId_to_coords(int rankId, std::vector dimensions, unsigned int coords[4]) +inline void rankId_to_coords(int rankId, std::vector dimensions, unsigned int* coords) { unsigned int dim_size_product = 1; unsigned int i = 0; -- 2.20.1