diff options
Diffstat (limited to 'games/phantasia')
-rw-r--r-- | games/phantasia/convert.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/games/phantasia/convert.c b/games/phantasia/convert.c index 53127de7ddf..204c01cbb48 100644 --- a/games/phantasia/convert.c +++ b/games/phantasia/convert.c @@ -58,7 +58,7 @@ FILE *oldcharac, *newcharac; /* to open old and new files */ exit(1); } - srandom((unsigned) time((long *) NULL)); /* prime random numbers */ + srandom((unsigned) time(NULL)); /* prime random numbers */ while (fread((char *) &Oldplayer, sizeof(struct oldplayer), 1, oldcharac) == 1) /* read and convert old structures into new */ |