aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2009-09-29 07:21:35 +0000
committerDean Camera <dean@fourwalledcubicle.com>2009-09-29 07:21:35 +0000
commit512977322b4183456dcd7aa2a995dde1767708e8 (patch)
treefbd1617ab80bedcaaf9d7764251eca566468260b /Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c
parent7977663f62627a9561e6180e0548e5a9c83c97c3 (diff)
downloadlufa-512977322b4183456dcd7aa2a995dde1767708e8.tar.gz
lufa-512977322b4183456dcd7aa2a995dde1767708e8.tar.bz2
lufa-512977322b4183456dcd7aa2a995dde1767708e8.zip
Fix missing semicolons in the *WithParser Host mode demos.
Diffstat (limited to 'Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c')
-rw-r--r--Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c b/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c
index 00cdb7242..15c1e2478 100644
--- a/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c
+++ b/Demos/Host/ClassDriver/MouseHostWithParser/MouseHostWithParser.c
@@ -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));
}