Skip to content

Commit 939ecc8

Browse files
committed
Small fix in Const.toDT fn
1 parent 3ede8fc commit 939ecc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/src/LibExecution/ProgramTypesToDarkTypes.fs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ module Const =
949949
| PT.Const.CUInt128 i -> "CUInt128", [ DUInt128 i ]
950950
| PT.Const.CFloat(sign, w, f) ->
951951
"CFloat", [ Sign.toDT sign; DString w; DString f ]
952-
| PT.Const.CChar c -> "CChar", [ DChar c ]
952+
| PT.Const.CChar c -> "CChar", [ DString c ]
953953
| PT.Const.CString s -> "CString", [ DString s ]
954954

955955
| PT.Const.CTuple(first, second, theRest) ->

0 commit comments

Comments
 (0)