Skip to content

Commit 3097c9e

Browse files
committed
Fix function name in host.h
1 parent 836e209 commit 3097c9e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

common/host.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ void host_consumer_send(uint16_t report)
8686
(*driver->send_consumer)(report);
8787
}
8888

89-
uint16_t host_last_sysytem_report(void)
89+
uint16_t host_last_system_report(void)
9090
{
9191
return last_system_report;
9292
}

common/host.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ void host_mouse_send(report_mouse_t *report);
4747
void host_system_send(uint16_t data);
4848
void host_consumer_send(uint16_t data);
4949

50-
uint16_t host_last_sysytem_report(void);
50+
uint16_t host_last_system_report(void);
5151
uint16_t host_last_consumer_report(void);
5252

5353
#ifdef __cplusplus

0 commit comments

Comments
 (0)