mirror of
https://github.com/Atmosphere-NX/Atmosphere.git
synced 2025-04-24 05:24:47 +00:00
smc_user: Fix syntax for size assignment in user_load_secure_exp_mod_key() and user_load_rsa_oaep_key()
This commit is contained in:
parent
b00df2032d
commit
24cbd060a9
1 changed files with 2 additions and 2 deletions
|
@ -374,7 +374,7 @@ uint32_t user_load_rsa_oaep_key(smc_args_t *args) {
|
|||
}
|
||||
is_personalized = (int)args->X[3];
|
||||
user_address = (void *)args->X[4];
|
||||
size = = (size_t)args->X[5];
|
||||
size = (size_t)args->X[5];
|
||||
wrapped_key[0] = args->X[6];
|
||||
wrapped_key[1] = args->X[7];
|
||||
|
||||
|
@ -469,7 +469,7 @@ uint32_t user_load_secure_exp_mod_key(smc_args_t *args) {
|
|||
}
|
||||
is_personalized = (int)args->X[3];
|
||||
user_address = (void *)args->X[4];
|
||||
size = = (size_t)args->X[5];
|
||||
size = (size_t)args->X[5];
|
||||
wrapped_key[0] = args->X[6];
|
||||
wrapped_key[1] = args->X[7];
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue