cpukit x86_64: Address unused parameter warnings

Add "(void) param;" annotation to address unused parameter warnings.
Found with GCC's warning -Wunused-parameter.
This commit is contained in:
Joel Sherrill
2025-10-10 21:59:38 +00:00
committed by Gedare Bloom
parent fa6157d66e
commit 9b3cb64b13
+1
View File
@@ -43,6 +43,7 @@
void _CPU_Exception_frame_print(const CPU_Exception_frame *ctx)
{
(void) ctx;
}
Context_Control_fp _CPU_Null_fp_context;