diff xrogue/eat.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/eat.c	Mon Mar 07 19:26:08 2016 -0500
+++ b/xrogue/eat.c	Mon Mar 07 20:44:01 2016 -0500
@@ -153,7 +153,7 @@
             }
             else {
                 turn_on(player, HASDISEASE);
-                fuse(cure_disease, (VOID *)NULL, roll(HEALTIME,SICKTIME),AFTER);
+                fuse(cure_disease, NULL, roll(HEALTIME,SICKTIME),AFTER);
                 msg("You become ill. ");
             }
     }