Remove superflous casts and parenthesis.
This commit is contained in:
parent
f883710417
commit
cd73a47dfa
28 changed files with 136 additions and 145 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue