diff options
-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 |