From 0df7327c63c89afc3490de89a94cfde3460f3c96 Mon Sep 17 00:00:00 2001 From: Ray Miller Date: Wed, 12 Feb 2025 11:58:43 +0000 Subject: [PATCH] Bugfix: missing data for output CSV. --- guile/sort-buckets.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guile/sort-buckets.scm b/guile/sort-buckets.scm index 622e2fc..16c16a6 100644 --- a/guile/sort-buckets.scm +++ b/guile/sort-buckets.scm @@ -39,7 +39,7 @@ along with this program. If not, see . (sorted (map cdr (sort-list (map (lambda (xs) (cons (parse-size (last xs)) xs)) data) (lambda (a b) (> (first a) (first b))))))) - (call-with-output-file out-file (lambda (port) (scm->dsv port #:format 'rfc4180))))) + (call-with-output-file out-file (lambda (port) (scm->dsv sorted port #:format 'rfc4180))))) (define (main args) (case (length args)