From b81dc7e072697e2b204e7ed5ab7efaa673b5b6bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sun, 28 Jun 2020 21:33:29 +0200 Subject: Change calling for find-min. --- module/srfi/srfi-41/util.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'module/srfi/srfi-41/util.scm') diff --git a/module/srfi/srfi-41/util.scm b/module/srfi/srfi-41/util.scm index 79cdbcb6..b1bc6f50 100644 --- a/module/srfi/srfi-41/util.scm +++ b/module/srfi/srfi-41/util.scm @@ -17,7 +17,7 @@ ;; If all streams where empty, end the output stream (if (null? streams) stream-null - (let* ((min other (find-min < stream-car streams)) + (let* ((min other (find-min streams stream-car)) (m ms (stream-car+cdr min))) (stream-cons m (interleave-streams < (cons ms other))))))) -- cgit v1.2.3