cpukit/sapi/src/rbheap.c: Address unused parameter warnings

Add "(void) param;" annotation to address unused parameter warnings.
Found with GCC's warning -Wunused-paramter.
This commit is contained in:
Joel Sherrill
2025-09-25 16:19:57 -05:00
committed by Gedare Bloom
parent 787e5a3a76
commit af86ade836

View File

@@ -285,6 +285,8 @@ rtems_status_code rtems_rbheap_free(rtems_rbheap_control *control, void *ptr)
void rtems_rbheap_extend_descriptors_never(rtems_rbheap_control *control)
{
(void) control;
/* Do nothing */
}