From 8e4ab5f416c4dd9cd11c44c88aa9de9dd50ae03e Mon Sep 17 00:00:00 2001 From: Lioncash Date: Fri, 23 Feb 2018 07:51:05 -0500 Subject: [PATCH] smc_api: Add missing parameter name to smc_get_result --- exosphere/smc_api.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exosphere/smc_api.c b/exosphere/smc_api.c index 687c5c7b2..ae18e683e 100644 --- a/exosphere/smc_api.c +++ b/exosphere/smc_api.c @@ -229,7 +229,7 @@ uint32_t smc_check_status(smc_args_t *args) { return 0; } -uint32_t smc_get_result(smc_args_t *) { +uint32_t smc_get_result(smc_args_t *args) { uint32_t status; unsigned char result_buf[0x400]; upage_ref_t page_ref;