Fix rackets char type
This commit is contained in:
parent
862c4ff6b3
commit
d4ba6bbb41
|
|
@ -34,8 +34,8 @@
|
|||
((equal? type 'uint32) _uint32)
|
||||
((equal? type 'int64) _int64)
|
||||
((equal? type 'uint64) _uint64)
|
||||
((equal? type 'char) _int)
|
||||
((equal? type 'unsigned-char) _int)
|
||||
((equal? type 'char) _int8)
|
||||
((equal? type 'unsigned-char) _int8)
|
||||
((equal? type 'short) _short)
|
||||
((equal? type 'unsigned-short) _ushort)
|
||||
((equal? type 'int) _int)
|
||||
|
|
|
|||
Loading…
Reference in New Issue