Mercurial > hg > early-roguelike
diff xrogue/rings.c @ 236:7c1cb43f346e
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.
author | John "Elwin" Edwards |
---|---|
date | Mon, 07 Mar 2016 20:44:01 -0500 |
parents | f54901b9c39b |
children |
line wrap: on
line diff
--- a/xrogue/rings.c Mon Mar 07 19:26:08 2016 -0500 +++ b/xrogue/rings.c Mon Mar 07 20:44:01 2016 -0500 @@ -100,9 +100,9 @@ } } 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]) {