From 24cbd060a9c1f15fdde754897bc31d373cc632b8 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 22 Feb 2018 16:34:02 -0500 Subject: [PATCH] smc_user: Fix syntax for size assignment in user_load_secure_exp_mod_key() and user_load_rsa_oaep_key() --- exosphere/smc_user.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exosphere/smc_user.c b/exosphere/smc_user.c index 02033d9d3..c929ea9ca 100644 --- a/exosphere/smc_user.c +++ b/exosphere/smc_user.c @@ -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];