Indentation fixes; suspect indent-emp is to blame.

This commit is contained in:
Markus Armbruster 2004-02-28 18:06:11 +00:00
parent aa4e268d89
commit e67dca9d29
29 changed files with 89 additions and 133 deletions

View file

@ -82,13 +82,11 @@ shutdown_sequence(void *unused)
shutdown_pending);
} else if (shutdown_pending <= 60
&& shutdown_pending % 10 == 0) {
pr_wall
("%sThe server will be shutting down in %d minutes!\n",
header, shutdown_pending);
pr_wall("%sThe server will be shutting down in %d minutes!\n",
header, shutdown_pending);
} else if (shutdown_pending % 60 == 0) {
pr_wall
("%sThe server will be shutting down %d hours from now.\n",
header, (int)(shutdown_pending / 60));
pr_wall("%sThe server will be shutting down %d hours from now.\n",
header, (int)(shutdown_pending / 60));
}
}
empth_sleep(now + 60);