From 6876262a446bbae86df3535016bb804ddf264ef3 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Wed, 18 Jun 2025 13:04:37 -0500 Subject: [PATCH] bsps/mips/hurricane/clock/ckinit.c: Address type mismatch GCC 14 generates an error for the wrong signature function being passed in. The underlying type was a void * so adjusting the signature of the ISR handler was not an option. Added cast. Closes #5272 --- bsps/mips/hurricane/clock/ckinit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bsps/mips/hurricane/clock/ckinit.c b/bsps/mips/hurricane/clock/ckinit.c index 411cd5bdbb..e8c23992b3 100644 --- a/bsps/mips/hurricane/clock/ckinit.c +++ b/bsps/mips/hurricane/clock/ckinit.c @@ -200,5 +200,5 @@ void Clock_exit( void ) void _Clock_Initialize( void ) { - Install_clock( Clock_isr ); + Install_clock( (void *)Clock_isr ); }