forked from mfulz_github/qmk_firmware
Fix missing semicolons in the *WithParser Host mode demos.
This commit is contained in:
parent
7977663f62
commit
512977322b
|
@ -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
|
* only store KEYBOARD usage page items into the Processed HID Report structure to
|
||||||
* save RAM and ignore the rest
|
* 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
|
* structure to save RAM and ignore the rest
|
||||||
*/
|
*/
|
||||||
return ((CurrentItemAttributes->Usage.Page == USAGE_PAGE_BUTTON) ||
|
return ((CurrentItemAttributes->Usage.Page == USAGE_PAGE_BUTTON) ||
|
||||||
(CurrentItemAttributes->Usage.Page == USAGE_PAGE_GENERIC_DCTRL))
|
(CurrentItemAttributes->Usage.Page == USAGE_PAGE_GENERIC_DCTRL));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue