diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2018-06-17 16:06:07 +1000 |
---|---|---|
committer | skullydazed <skullydazed@users.noreply.github.com> | 2018-09-11 12:52:57 -0700 |
commit | df8e417032bace12d69b5d75aebf257ea5dadb86 (patch) | |
tree | 52ab88e56f9b905e2df3485bb79e6031872c28b9 /lib/lufa/LUFA/Drivers/USB/Class/Device/PrinterClassDevice.h | |
parent | c7e1b53913707487b0218b984367d32fb4466aaa (diff) | |
download | qmk_firmware-df8e417032bace12d69b5d75aebf257ea5dadb86.tar.gz |
Fix mismatched aliased event and event stub function prototypes.
Diffstat (limited to 'lib/lufa/LUFA/Drivers/USB/Class/Device/PrinterClassDevice.h')
-rw-r--r-- | lib/lufa/LUFA/Drivers/USB/Class/Device/PrinterClassDevice.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/lufa/LUFA/Drivers/USB/Class/Device/PrinterClassDevice.h b/lib/lufa/LUFA/Drivers/USB/Class/Device/PrinterClassDevice.h index 5ac527935..d850842d8 100644 --- a/lib/lufa/LUFA/Drivers/USB/Class/Device/PrinterClassDevice.h +++ b/lib/lufa/LUFA/Drivers/USB/Class/Device/PrinterClassDevice.h @@ -273,7 +273,7 @@ static int PRNT_Device_getchar_Blocking(FILE* Stream) ATTR_NON_NULL_PTR_ARG(1); #endif - void PRNT_Device_Event_Stub(void); + void PRNT_Device_Event_Stub(USB_ClassInfo_PRNT_Device_t* const PRNTInterfaceInfo); void EVENT_PRNT_Device_SoftReset(USB_ClassInfo_PRNT_Device_t* const PRNTInterfaceInfo) ATTR_WEAK ATTR_NON_NULL_PTR_ARG(1) ATTR_ALIAS(PRNT_Device_Event_Stub); |