summaryrefslogtreecommitdiff
path: root/host.c
diff options
context:
space:
mode:
authortmk2011-12-22 01:05:28 +0900
committertmk2011-12-22 01:05:28 +0900
commit7386c761912530bbb53496002ab32d02c8a86833 (patch)
treed974c9f82f4db2434ac26357f4f3e38a2d4f6777 /host.c
parentbaf885dc31e1d4ac98e03870dffea6e19c259427 (diff)
fixed a bug on host_system_send().
Diffstat (limited to 'host.c')
-rw-r--r--host.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/host.c b/host.c
index 65b5ddcbb..c5383ed42 100644
--- a/host.c
+++ b/host.c
@@ -142,7 +142,7 @@ void host_mouse_send(report_mouse_t *report)
void host_system_send(uint16_t data)
{
if (!driver) return;
- (*driver->send_consumer)(data);
+ (*driver->send_system)(data);
}
void host_consumer_send(uint16_t data)