From d3166fb94cdda9d3f96aa144baaf7ceb5288b092 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A1szl=C3=B3=20Monda?= Date: Sun, 9 Jul 2017 01:49:34 +0200 Subject: [PATCH] Indent curlies according to our coding standards. --- right/src/usb_report_updater.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/right/src/usb_report_updater.c b/right/src/usb_report_updater.c index 39f9c4d..7eb7014 100644 --- a/right/src/usb_report_updater.c +++ b/right/src/usb_report_updater.c @@ -74,7 +74,8 @@ void processMouseAction(key_action_t action) wasPreviousMouseActionWheelAction = isWheelAction; } -void processTestAction(key_action_t testAction) { +void processTestAction(key_action_t testAction) +{ switch (testAction.test.testAction) { case TestAction_DisableUsb: if (kStatus_USB_Success != USB_DeviceClassDeinit(CONTROLLER_ID)) { @@ -107,8 +108,8 @@ void processTestAction(key_action_t testAction) { } } -void UpdateActiveUsbReports() { - +void UpdateActiveUsbReports() +{ bzero(&UsbMouseReport, sizeof(usb_mouse_report_t)); uint8_t basicScancodeIndex = 0;