Fix the char type on Guile
This commit is contained in:
parent
029ae48039
commit
862c4ff6b3
|
|
@ -33,8 +33,8 @@
|
||||||
((equal? type 'uint32) uint32)
|
((equal? type 'uint32) uint32)
|
||||||
((equal? type 'int64) int64)
|
((equal? type 'int64) int64)
|
||||||
((equal? type 'uint64) uint64)
|
((equal? type 'uint64) uint64)
|
||||||
((equal? type 'char) int)
|
((equal? type 'char) int8)
|
||||||
((equal? type 'unsigned-char) int)
|
((equal? type 'unsigned-char) int8)
|
||||||
((equal? type 'short) short)
|
((equal? type 'short) short)
|
||||||
((equal? type 'unsigned-short) unsigned-short)
|
((equal? type 'unsigned-short) unsigned-short)
|
||||||
((equal? type 'int) int)
|
((equal? type 'int) int)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue