From: Nathan Wagner Date: Fri, 18 Dec 2015 07:48:26 +0000 (-0600) Subject: style fix X-Git-Url: https://pd.if.org/git/?p=hexagon;a=commitdiff_plain;h=76ad26d2a8a12b8d090411b98f176f498a4fca39 style fix --- 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;