XRogue: get rid of VOID as an alias for long.
Maybe some compilers in 1986 didn't handle void pointers well, but they are no longer a concern.
This commit is contained in:
parent
090622896b
commit
e9c84b2637
19 changed files with 57 additions and 62 deletions
|
|
@ -100,9 +100,9 @@ ring_on(struct linked_list *item)
|
|||
}
|
||||
}
|
||||
when R_SEARCH:
|
||||
start_daemon(ring_search, (VOID *)NULL, AFTER);
|
||||
start_daemon(ring_search, NULL, AFTER);
|
||||
when R_TELEPORT:
|
||||
start_daemon(ring_teleport, (VOID *)NULL, AFTER);
|
||||
start_daemon(ring_teleport, NULL, AFTER);
|
||||
}
|
||||
status(FALSE);
|
||||
if (r_know[obj->o_which] && r_guess[obj->o_which]) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue