mirror of
https://github.com/switchbrew/libnx.git
synced 2025-07-04 18:42:15 +02:00
Change size_t to u32 (because the size is 4 bytes, not 8)
This commit is contained in:
parent
acb6d7fc7d
commit
313e295305
@ -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;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user