Fix unused function parameter warnings on internal event stub functions.
authorDean Camera <dean@fourwalledcubicle.com>
Sat, 8 Dec 2018 03:48:25 +0000 (14:48 +1100)
committerDean Camera <dean@fourwalledcubicle.com>
Sat, 8 Dec 2018 03:48:25 +0000 (14:48 +1100)
LUFA/Drivers/USB/Core/Events.c

index df21f50..1aeb98e 100644 (file)
@@ -39,10 +39,13 @@ void USB_Event_Stub(void)
 
 void USB_Event_Stub_2(const uint8_t _1)
 {
+       (void)_1;
        USB_Event_Stub();
 }
 
 void USB_Event_Stub_3(const uint8_t _1, const uint8_t _2)
 {
+       (void)_1;
+       (void)_2;
        USB_Event_Stub();
 }