From e2aef89d99e0f03939780fb7cffb3e0a817037ee Mon Sep 17 00:00:00 2001 From: innovaker <66737976+innovaker@users.noreply.github.com> Date: Thu, 17 Dec 2020 19:57:38 +0000 Subject: [PATCH] refactor(endpoints): rename usage_report parameter to usage_page Aligns zmk_endpoints_send_report function declaration with its definition. PR: #522 --- app/include/zmk/endpoints.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/include/zmk/endpoints.h b/app/include/zmk/endpoints.h index 05e9954b..64280385 100644 --- a/app/include/zmk/endpoints.h +++ b/app/include/zmk/endpoints.h @@ -18,4 +18,4 @@ int zmk_endpoints_select(enum zmk_endpoint endpoint); int zmk_endpoints_toggle(); enum zmk_endpoint zmk_endpoints_selected(); -int zmk_endpoints_send_report(uint8_t usage_report); +int zmk_endpoints_send_report(uint8_t usage_page);