diff options
author | Markus Uhlin <markus@nifty-networks.net> | 2023-12-23 22:43:38 +0100 |
---|---|---|
committer | Markus Uhlin <markus@nifty-networks.net> | 2023-12-23 22:43:38 +0100 |
commit | 1b625d38b700680453211c53acd29e3189adc3c2 (patch) | |
tree | 03e7cd7cdeca2d1236d7e99470cf7da6520277a6 | |
parent | 0a84366a28f982ea2c1243fb3feabd51506a282f (diff) |
Reformatted move_and_time()
-rw-r--r-- | FICS/board.c | 10 |
1 files changed, 6 insertions, 4 deletions
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 |