| 511 | } |
| 512 | |
| 513 | void |
| 514 | livelog_printf(long ll_type, const char *line, ...) |
| 515 | { |
| 516 | char gamelogbuf[BUFSZ * 2]; |
| 517 | va_list the_args; |
| 518 | |
| 519 | va_start(the_args, line); |
| 520 | (void) vsnprintf(gamelogbuf, sizeof gamelogbuf, line, the_args); |
| 521 | va_end(the_args); |
| 522 | |
| 523 | gamelog_add(ll_type, svm.moves, gamelogbuf); |
| 524 | strNsubst(gamelogbuf, "\t", "_", 0); |
| 525 | livelog_add(ll_type, gamelogbuf); |
| 526 | } |
| 527 | |
| 528 | #else |
| 529 |
no test coverage detected