Change size_t to u32 (because the size is 4 bytes, not 8)

This commit is contained in:
ITotalJustice 2019-12-16 20:56:01 +00:00
parent acb6d7fc7d
commit 313e295305

View File

@ -358,7 +358,7 @@ typedef struct {
} SetCalRsa2048DeviceCertificate; } SetCalRsa2048DeviceCertificate;
typedef struct { typedef struct {
size_t size; ///< Size of the entire key. u32 size; ///< Size of the entire key.
u8 key[0x240]; u8 key[0x240];
} SetCalRsa2048DeviceKey; } SetCalRsa2048DeviceKey;
@ -376,7 +376,7 @@ typedef struct {
} SetCalSslCertificate; } SetCalSslCertificate;
typedef struct { typedef struct {
size_t size; ///< Size of the entire key. u32 size; ///< Size of the entire key.
u8 key[0x130]; u8 key[0x130];
} SetCalSslKey; } SetCalSslKey;