From 9b3cb64b1367da03ff64cbe265f72dcfe49bd475 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Fri, 10 Oct 2025 16:21:06 -0500 Subject: [PATCH] cpukit x86_64: Address unused parameter warnings Add "(void) param;" annotation to address unused parameter warnings. Found with GCC's warning -Wunused-parameter. --- cpukit/score/cpu/x86_64/cpu.c | 1 + 1 file changed, 1 insertion(+) diff --git a/cpukit/score/cpu/x86_64/cpu.c b/cpukit/score/cpu/x86_64/cpu.c index 7d82c3783a..725358c811 100644 --- a/cpukit/score/cpu/x86_64/cpu.c +++ b/cpukit/score/cpu/x86_64/cpu.c @@ -43,6 +43,7 @@ void _CPU_Exception_frame_print(const CPU_Exception_frame *ctx) { + (void) ctx; } Context_Control_fp _CPU_Null_fp_context;