From cc0480943c62fbfefd7192e9536f2598faf8e909 Mon Sep 17 00:00:00 2001 From: Christopher Allan Webber Date: Tue, 26 Apr 2016 10:11:05 -0500 Subject: [PATCH] actors: Fix create-actor, create-actor* * 8sync/systems/actors.scm (create-actor, create-actor*): Fixed calls to %hive-create-actor, which were missing the actor class. --- 8sync/systems/actors.scm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/8sync/systems/actors.scm b/8sync/systems/actors.scm index 1c937c3..286fef9 100644 --- a/8sync/systems/actors.scm +++ b/8sync/systems/actors.scm @@ -606,7 +606,7 @@ Instead, actors should call create-actor." This is the method actors should call directly (unless they want to supply an id-cookie, in which case they should use create-actor*)." - (8sync (%hive-create-actor (actor-hive from-actor) + (8sync (%hive-create-actor (actor-hive from-actor) actor-class init #f))) @@ -614,7 +614,7 @@ create-actor*)." "Create an instance of actor-class. Return the new actor's id. Like create-actor, but permits supplying an id-cookie." - (8sync (%hive-create-actor (actor-hive from-actor) + (8sync (%hive-create-actor (actor-hive from-actor) actor-class init id-cookie))) -- 2.31.1