Don't cast void to void.

This commit is contained in:
Markus Armbruster 2004-03-01 13:56:07 +00:00
parent 262e1bafba
commit 7c52730439
4 changed files with 12 additions and 12 deletions

View file

@ -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 */