Fix printing of NP and NR over 99 in sourcestats
This commit is contained in:
parent
e98080b8bb
commit
63ef2badd6
1 changed files with 1 additions and 1 deletions
2
client.c
2
client.c
|
@ -1801,7 +1801,7 @@ process_cmd_sourcestats(char *line)
|
|||
hostname_buf[25] = 0;
|
||||
}
|
||||
|
||||
printf("%-25s %2lu %2lu ", hostname_buf, n_samples, n_runs);
|
||||
printf("%-25s %3lu %3lu ", hostname_buf, n_samples, n_runs);
|
||||
print_seconds(span_seconds);
|
||||
printf(" ");
|
||||
print_freq_ppm(resid_freq_ppm);
|
||||
|
|
Loading…
Reference in a new issue