From 3274848b5612a9fa3a7306c7c4ca0a4b041c150c Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Thu, 20 Jun 2019 00:56:33 -0700 Subject: [PATCH] results: correct R_END_TRY_CATCH definition --- include/stratosphere/results/utilities.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/include/stratosphere/results/utilities.h b/include/stratosphere/results/utilities.h index 7afe40d7..1b45d1c7 100644 --- a/include/stratosphere/results/utilities.h +++ b/include/stratosphere/results/utilities.h @@ -48,8 +48,9 @@ extern "C" { else #define R_END_TRY_CATCH \ - } else if (R_FAILED(_tmp_r_try_catch_rc)) { \ - return _tmp_r_try_catch_rc; \ + else if (R_FAILED(_tmp_r_try_catch_rc)) { \ + return _tmp_r_try_catch_rc; \ + } \ } \ })