userwork: remove trailing comma in message

This commit is contained in:
Zbigniew Jędrzejewski-Szmek 2020-05-26 18:55:23 +02:00
parent 1414090854
commit 40fd0a77c6
1 changed files with 1 additions and 1 deletions

View File

@ -724,7 +724,7 @@ static int run(int argc, char *argv[]) {
last_busy_usec = n;
else if (listen_idle_usec != USEC_INFINITY && n >= usec_add(last_busy_usec, listen_idle_usec)) {
char buf[FORMAT_TIMESPAN_MAX];
log_debug("Exiting worker, been idle for %s, .",
log_debug("Exiting worker, been idle for %s.",
format_timespan(buf, sizeof(buf), usec_sub_unsigned(n, last_busy_usec), 0));
break;
}