Cosmetics - add missing space after ellipses in shutdown messages.
MFC after: 1 month Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
d56d9e27c7
commit
f7bd221730
@ -804,7 +804,7 @@ kproc_shutdown(void *arg, int howto)
|
||||
return;
|
||||
|
||||
p = (struct proc *)arg;
|
||||
printf("Waiting (max %d seconds) for system process `%s' to stop...",
|
||||
printf("Waiting (max %d seconds) for system process `%s' to stop... ",
|
||||
kproc_shutdown_wait, p->p_comm);
|
||||
error = kproc_suspend(p, kproc_shutdown_wait * hz);
|
||||
|
||||
@ -824,7 +824,7 @@ kthread_shutdown(void *arg, int howto)
|
||||
return;
|
||||
|
||||
td = (struct thread *)arg;
|
||||
printf("Waiting (max %d seconds) for system thread `%s' to stop...",
|
||||
printf("Waiting (max %d seconds) for system thread `%s' to stop... ",
|
||||
kproc_shutdown_wait, td->td_name);
|
||||
error = kthread_suspend(td, kproc_shutdown_wait * hz);
|
||||
|
||||
|
@ -2103,7 +2103,7 @@ sched_sync(void)
|
||||
if (syncer_state != SYNCER_RUNNING &&
|
||||
starttime != time_uptime) {
|
||||
if (first_printf) {
|
||||
printf("\nSyncing disks, vnodes remaining...");
|
||||
printf("\nSyncing disks, vnodes remaining... ");
|
||||
first_printf = 0;
|
||||
}
|
||||
printf("%d ", net_worklist_len);
|
||||
|
Loading…
Reference in New Issue
Block a user