diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-09-29 07:21:47 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2009-09-29 07:21:47 +0000 |
| commit | 75beb64f8715589af4fbc5aced2f9e8e05acdf43 (patch) | |
| tree | b8e01b6f772d9be20891ae4e8e515e0852ae6226 /Demos/Host | |
| parent | 09c2aa4920741bce19616cc146aec3fbad042bf8 (diff) | |
Fix missing semicolons in the *WithParser Host mode demos.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@850 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'Demos/Host')
| -rw-r--r-- | Demos/Host/LowLevel/KeyboardHostWithParser/HIDReport.c | 2 | ||||
| -rw-r--r-- | Demos/Host/LowLevel/MouseHostWithParser/HIDReport.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Host/LowLevel/KeyboardHostWithParser/HIDReport.c b/Demos/Host/LowLevel/KeyboardHostWithParser/HIDReport.c index 78ed985a..523765b1 100644 --- a/Demos/Host/LowLevel/KeyboardHostWithParser/HIDReport.c +++ b/Demos/Host/LowLevel/KeyboardHostWithParser/HIDReport.c @@ -85,5 +85,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/LowLevel/MouseHostWithParser/HIDReport.c b/Demos/Host/LowLevel/MouseHostWithParser/HIDReport.c index 1abf3ce3..4d13ce51 100644 --- a/Demos/Host/LowLevel/MouseHostWithParser/HIDReport.c +++ b/Demos/Host/LowLevel/MouseHostWithParser/HIDReport.c @@ -86,5 +86,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));
}
|
