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

index 78ed985..523765b 100644 (file)
@@ -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\r
         * save RAM and ignore the rest\r
         */\r
         * 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
 }\r
index 1abf3ce..4d13ce5 100644 (file)
@@ -86,5 +86,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
         * 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
 }\r