From 6359eed20745b7e4f403e50deecf106952d6689b Mon Sep 17 00:00:00 2001 From: Italo Sampaio <100376888+italo-sampaio@users.noreply.github.com> Date: Mon, 20 Jan 2025 11:46:39 -0300 Subject: [PATCH] Fixes formatting error identified by C linter (#266) --- firmware/src/sgx/src/untrusted/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/firmware/src/sgx/src/untrusted/main.c b/firmware/src/sgx/src/untrusted/main.c index a2d2c1af..222c7add 100644 --- a/firmware/src/sgx/src/untrusted/main.c +++ b/firmware/src/sgx/src/untrusted/main.c @@ -104,7 +104,7 @@ static void finalise_with(int exit_code) { } static void finalise(int signum) { - (void) signum; // Suppress unused parameter warning + (void)signum; // Suppress unused parameter warning finalise_with(0); }