Gauche fixes

This commit is contained in:
retropikzel 2025-07-25 11:37:18 +03:00
parent 191b318f7a
commit cbb493bc52
1 changed files with 1 additions and 1 deletions

View File

@ -76,7 +76,7 @@
(define c-utf8->string
(lambda (c-bytevector)
#;(when (c-null? c-bytevector)
(when (c-null? c-bytevector)
(error "Can not turn null pointer into string"))
(let ((size (c-strlen c-bytevector)))
(utf8->string (c-bytevector->bytevector c-bytevector size)))))