shithub: fnt

Download patch

ref: db6469109f37d5461bee21324b95670bd8b738c1
parent: e6306c331254e39bcf8395045b7abd4bd84d28c7
author: Sigrid Solveig Haflínudóttir <sigrid@ftrv.se>
date: Tue Jun 11 10:06:48 EDT 2024

fix wrong C type used

--- a/otf.rkt
+++ b/otf.rkt
@@ -133,7 +133,7 @@
     [(_ typ:id bits c:id parse:expr)
      #:declare bits (expr/c #'size-in-bits/c #:name "size in bits")
      #'(begin
-         (define typ (make-type `typ bits.c `typ parse))
+         (define typ (make-type `typ bits.c `c parse))
          (set! types (append types (list typ))))]))
 
 (define-syntax (mkcmplx stx)