From 0dfad70e8c73926e3c411937ea87bd15488c63c9 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Wed, 20 Dec 2023 22:19:11 +0100 Subject: Reformatted multicol_end() --- FICS/multicol.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'FICS') diff --git a/FICS/multicol.c b/FICS/multicol.c index 1dd98d9..603b4d3 100644 --- a/FICS/multicol.c +++ b/FICS/multicol.c @@ -135,12 +135,12 @@ PUBLIC int multicol_pprint(multicol * m, int player, int cols, int space) return 0; } -PUBLIC int multicol_end(multicol * m) +PUBLIC int +multicol_end(multicol *m) { - int i; - for (i = 0; i < m->num; i++) - rfree(m->strArray[i]); - rfree(m->strArray); - rfree(m); - return 0; + for (int i = 0; i < m->num; i++) + rfree(m->strArray[i]); + rfree(m->strArray); + rfree(m); + return 0; } -- cgit v1.2.3