From 76ad26d2a8a12b8d090411b98f176f498a4fca39 Mon Sep 17 00:00:00 2001 From: Nathan Wagner Date: Fri, 18 Dec 2015 01:48:26 -0600 Subject: [PATCH] style fix --- astar.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astar.c b/astar.c index 5bfc60f..6e89758 100644 --- a/astar.c +++ b/astar.c @@ -136,7 +136,7 @@ struct HL_astar_hex *in_closed(struct HL_astar *s, int hex) { struct HL_astar_hex *h; if (!s) return 0; - for(h = s->closed; h; h = h->next) { + for (h = s->closed; h; h = h->next) { if (h->hex == hex) return h; } return NULL; @@ -146,7 +146,7 @@ struct HL_astar_hex *in_open(struct HL_astar *s, int hex) { struct HL_astar_hex *h; if (!s) return 0; - for(h = s->open; h; h = h->next) { + for (h = s->open; h; h = h->next) { if (h->hex == hex) return h; } return NULL; -- 2.40.0