From bcc63f3a63f4b1d5d706ecd8b98c6ae287fa62b1 Mon Sep 17 00:00:00 2001 From: Drashna Jael're Date: Mon, 20 Nov 2023 23:54:25 -0800 Subject: [PATCH] Re-fix lint?! --- quantum/pointing_device/pointing_device_drivers.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/quantum/pointing_device/pointing_device_drivers.c b/quantum/pointing_device/pointing_device_drivers.c index 4fc599f7d01..a84c3d35d8b 100644 --- a/quantum/pointing_device/pointing_device_drivers.c +++ b/quantum/pointing_device/pointing_device_drivers.c @@ -264,7 +264,7 @@ report_mouse_t cirque_pinnacle_get_report(report_mouse_t mouse_report) { static uint16_t x = 0, y = 0, last_scale = 0; # if defined(CIRQUE_PINNACLE_TAP_ENABLE) - mouse_report.buttons = pointing_device_handle_buttons(mouse_report.buttons, false, POINTING_DEVICE_BUTTON1); + mouse_report.buttons = pointing_device_handle_buttons(mouse_report.buttons, false, POINTING_DEVICE_BUTTON1); # endif # ifdef POINTING_DEVICE_GESTURES_CURSOR_GLIDE_ENABLE cursor_glide_t glide_report = {0};