Skip to content
Snippets Groups Projects
Commit 51297732 authored by Dean Camera's avatar Dean Camera
Browse files

Fix missing semicolons in the *WithParser Host mode demos.

parent 7977663f
Branches
Tags
No related merge requests found
......@@ -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);
}
......@@ -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));
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment