Fix missing semicolons in the *WithParser Host mode demos.
authorDean Camera <dean@fourwalledcubicle.com>
Tue, 29 Sep 2009 07:21:35 +0000 (07:21 +0000)
committerDean Camera <dean@fourwalledcubicle.com>
Tue, 29 Sep 2009 07:21:35 +0000 (07:21 +0000)
Demos/Host/ClassDriver/KeyboardHostWithParser/KeyboardHostWithParser.c
Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c

index 520c651..2b66a7c 100644 (file)
@@ -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\r
         * save RAM and ignore the rest\r
         */\r
-       return (CurrentItemAttributes->Usage.Page == USAGE_PAGE_KEYBOARD)\r
+       return (CurrentItemAttributes->Usage.Page == USAGE_PAGE_KEYBOARD);\r
 }\r
index 00cdb72..15c1e24 100644 (file)
@@ -261,5 +261,5 @@ bool CALLBACK_HIDParser_FilterHIDReportItem(HID_ReportItem_Attributes_t* Current
         * structure to save RAM and ignore the rest\r
         */\r
        return ((CurrentItemAttributes->Usage.Page == USAGE_PAGE_BUTTON) ||\r
-               (CurrentItemAttributes->Usage.Page == USAGE_PAGE_GENERIC_DCTRL))\r
+               (CurrentItemAttributes->Usage.Page == USAGE_PAGE_GENERIC_DCTRL));\r
 }\r