From 7386c761912530bbb53496002ab32d02c8a86833 Mon Sep 17 00:00:00 2001 From: tmk Date: Thu, 22 Dec 2011 01:05:28 +0900 Subject: fixed a bug on host_system_send(). --- host.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'host.c') 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) -- cgit v1.2.3-24-g4f1b