diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-09-29 07:21:35 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-09-29 07:21:35 +0000 |
commit | 512977322b4183456dcd7aa2a995dde1767708e8 (patch) | |
tree | fbd1617ab80bedcaaf9d7764251eca566468260b /Demos/Host | |
parent | 7977663f62627a9561e6180e0548e5a9c83c97c3 (diff) | |
download | lufa-512977322b4183456dcd7aa2a995dde1767708e8.tar.gz lufa-512977322b4183456dcd7aa2a995dde1767708e8.tar.bz2 lufa-512977322b4183456dcd7aa2a995dde1767708e8.zip |
Fix missing semicolons in the *WithParser Host mode demos.
Diffstat (limited to 'Demos/Host')
-rw-r--r-- | Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c | 2 | ||||
-rw-r--r-- | Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c b/Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c index 520c65162..2b66a7c65 100644 --- a/Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c +++ b/Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c @@ -261,5 +261,5 @@ bool CALLBACK_HIDParser_FilterHIDReportItem(HID_ReportItem_Attributes_t* Current * only store KEYBOARD usage page items into the Processed HID Report structure to
* save RAM and ignore the rest
*/
- return (CurrentItemAttributes->Usage.Page == USAGE_PAGE_KEYBOARD)
+ return (CurrentItemAttributes->Usage.Page == USAGE_PAGE_KEYBOARD);
}
diff --git a/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c b/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c index 00cdb7242..15c1e2478 100644 --- a/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c +++ b/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c @@ -261,5 +261,5 @@ bool CALLBACK_HIDParser_FilterHIDReportItem(HID_ReportItem_Attributes_t* Current * structure to save RAM and ignore the rest
*/
return ((CurrentItemAttributes->Usage.Page == USAGE_PAGE_BUTTON) ||
- (CurrentItemAttributes->Usage.Page == USAGE_PAGE_GENERIC_DCTRL))
+ (CurrentItemAttributes->Usage.Page == USAGE_PAGE_GENERIC_DCTRL));
}
|