Don't cast void to void.
This commit is contained in:
parent
262e1bafba
commit
7c52730439
4 changed files with 12 additions and 12 deletions
|
@ -106,9 +106,9 @@ new(void)
|
|||
} else {
|
||||
(void)time(&now);
|
||||
#if !defined(_WIN32)
|
||||
(void)srandom(now);
|
||||
srandom(now);
|
||||
#else
|
||||
(void)srand(now);
|
||||
srand(now);
|
||||
#endif
|
||||
for (i = 0; i < 300 && !player->aborted; i++) {
|
||||
/* Both x and y should be either odd or even */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue