From 1b625d38b700680453211c53acd29e3189adc3c2 Mon Sep 17 00:00:00 2001 From: Markus Uhlin Date: Sat, 23 Dec 2023 22:43:38 +0100 Subject: Reformatted move_and_time() --- FICS/board.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'FICS') diff --git a/FICS/board.c b/FICS/board.c index 863cd54..6a241d5 100644 --- a/FICS/board.c +++ b/FICS/board.c @@ -230,11 +230,13 @@ PUBLIC char *board_to_string(char *wn, char *bn, return bstring; } -PUBLIC char *move_and_time(move_t *m) +PUBLIC char * +move_and_time(move_t *m) { - static char tmp[20]; - sprintf(tmp, "%-7s (%s)", m->algString, tenth_str(m->tookTime, 0)); - return tmp; + static char tmp[20]; + + sprintf(tmp, "%-7s (%s)", m->algString, tenth_str(m->tookTime, 0)); + return tmp; } PRIVATE int -- cgit v1.2.3