Fix typo in scripts/library.py (wrong data size for u8) (#393)

This commit is contained in:
Masahiro Masuda 2022-01-08 03:29:56 +09:00 committed by GitHub
parent c2ee13a0fe
commit d7c9cbf0b9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -155,7 +155,7 @@ DataTypeTag = {
DataTypeSize = {
DataType.b1: 1,
DataType.u4: 4,
DataType.u8: 4,
DataType.u8: 8,
DataType.u16: 16,
DataType.u32: 32,
DataType.u64: 64,