Fix incorrect Event call name in USBInterrupt.c.

This commit is contained in:
Dean Camera 2009-08-05 07:18:08 +00:00
parent c5038f1bf4
commit 042d3288ad
4 changed files with 9 additions and 8 deletions

View file

@ -118,7 +118,7 @@ void EVENT_USB_Device_ConfigurationChanged(void)
}
/** Event handler for the library USB Unhandled Control Request event. */
void EVENT_USB_Device_Device_UnhandledControlRequest(void)
void EVENT_USB_Device_UnhandledControlRequest(void)
{
HID_Device_ProcessControlRequest(&Mouse_HID_Interface);
}