diff options
author | Haru <haru@dotalux.com> | 2015-10-04 20:36:36 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-10-11 00:23:36 +0200 |
commit | 5c22b636b315776ea3cd5d279344aac7f5a47548 (patch) | |
tree | 96070307820882d07df03597a94302dd6959cfdd /src/map/path.c | |
parent | da34200bfe78e6b8efcd08fc6511edcda900d483 (diff) | |
download | hercules-5c22b636b315776ea3cd5d279344aac7f5a47548.tar.gz hercules-5c22b636b315776ea3cd5d279344aac7f5a47548.tar.bz2 hercules-5c22b636b315776ea3cd5d279344aac7f5a47548.tar.xz hercules-5c22b636b315776ea3cd5d279344aac7f5a47548.zip |
Changed VECTOR/BHEAP/ARRAY macros to discourage usage of unsigned loop counters.
Signed-off-by: Haru <haru@dotalux.com>
Diffstat (limited to 'src/map/path.c')
-rw-r--r-- | src/map/path.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |