Remove superflous casts and parenthesis.

This commit is contained in:
Markus Armbruster 2006-05-21 12:24:30 +00:00
parent f883710417
commit cd73a47dfa
28 changed files with 136 additions and 145 deletions

View file

@ -87,7 +87,7 @@ shutdown_sequence(void *unused)
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));
header, shutdown_pending / 60);
}
}
empth_sleep(now + 60);