summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--ccwl/ccwl.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/ccwl/ccwl.scm b/ccwl/ccwl.scm
index 429bbed..558161c 100644
--- a/ccwl/ccwl.scm
+++ b/ccwl/ccwl.scm
@@ -498,13 +498,13 @@ identifiers defined in the commands."
                              ((id . type)
                               (with-syntax ((id (datum->syntax #f id))
                                             (type (datum->syntax #f type)))
-                                #`(make-input 'id 'type #f #f #f #f #f #f))))
+                                #`(make-input 'id 'type #f #f #f #f #f '()))))
                            (parameters->id+type (assoc-ref yaml "inputs"))))
               (list #,@(map (match-lambda
                              ((id . type)
                               (with-syntax ((id (datum->syntax #f id))
                                             (type (datum->syntax #f type)))
-                                #`(make-output 'id 'type #f #f #f))))
+                                #`(make-output 'id 'type '() #f '()))))
                            (parameters->id+type (assoc-ref yaml "outputs")))))))))))
 
 (define (function-inputs function)