From 059ebd01a3f34ce288adfe30c6cd5b88553882fa Mon Sep 17 00:00:00 2001 From: Dean Camera Date: Tue, 29 Sep 2009 07:21:47 +0000 Subject: Fix missing semicolons in the *WithParser Host mode demos. --- Demos/Host/LowLevel/KeyboardHostWithParser/HIDReport.c | 2 +- Demos/Host/LowLevel/MouseHostWithParser/HIDReport.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'Demos/Host/LowLevel') diff --git a/Demos/Host/LowLevel/KeyboardHostWithParser/HIDReport.c b/Demos/Host/LowLevel/KeyboardHostWithParser/HIDReport.c index 78ed985a0..523765b11 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 1abf3ce3a..4d13ce519 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)); } -- cgit v1.2.3