diff options
-rw-r--r-- | starling/node.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/starling/node.scm b/starling/node.scm index 2982e31..dd94220 100644 --- a/starling/node.scm +++ b/starling/node.scm @@ -148,7 +148,7 @@ represented as a ratio in the range [0, 1]." (define-method (reboot (node <node>)) (define (do-reboot) - (for-each detach (children node)) + (for-each-child detach node) (with-agenda (agenda node) (reset-agenda)) (on-boot node)) (cond |