diff arogue7/rings.c @ 151:cadff8f047a1

arogue7, xrogue: rename daemon() to start_daemon(). This prevents conflict with the BSD/OSX daemon() system function.
author John "Elwin" Edwards
date Thu, 28 May 2015 10:21:43 -0400
parents b786053d2f37
children f9ef86cf22b2
line wrap: on
line diff
--- a/arogue7/rings.c	Thu May 28 09:41:29 2015 -0400
+++ b/arogue7/rings.c	Thu May 28 10:21:43 2015 -0400
@@ -89,9 +89,9 @@
 		}
 	    }
 	when R_SEARCH:
-		daemon(ring_search, 0, AFTER);
+		start_daemon(ring_search, 0, AFTER);
 	when R_TELEPORT:
-		daemon(ring_teleport, 0, AFTER);
+		start_daemon(ring_teleport, 0, AFTER);
     }
     status(FALSE);
     if (r_know[obj->o_which] && r_guess[obj->o_which])