From 5c22b636b315776ea3cd5d279344aac7f5a47548 Mon Sep 17 00:00:00 2001 From: Haru Date: Sun, 4 Oct 2015 20:36:36 +0200 Subject: Changed VECTOR/BHEAP/ARRAY macros to discourage usage of unsigned loop counters. Signed-off-by: Haru --- src/map/path.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/map') diff --git a/src/map/path.c b/src/map/path.c index a482fc473..29701d445 100644 --- a/src/map/path.c +++ b/src/map/path.c @@ -45,7 +45,7 @@ struct path_node { }; /// Binary heap of path nodes -BHEAP_STRUCT_DECL(node_heap, struct path_node*); +BHEAP_STRUCT_DECL(node_heap, struct path_node *); /// Comparator for binary heap of path nodes (minimum cost at top) #define NODE_MINTOPCMP(i,j) ((i)->f_cost - (j)->f_cost) -- cgit v1.2.3-70-g09d2