From debee8aa477fbec7c1c23d5dec565de11241f814 Mon Sep 17 00:00:00 2001 From: Szczepan Zalega Date: Thu, 28 Jul 2016 14:36:59 +0200 Subject: Use int instead of CommError Signed-off-by: Szczepan Zalega --- device.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'device.cc') diff --git a/device.cc b/device.cc index cf4b222..477884b 100644 --- a/device.cc +++ b/device.cc @@ -34,17 +34,17 @@ bool Device::connect() { return mp_devhandle != NULL; } -CommError Device::send(const void *packet) { +int Device::send(const void *packet) { Log::instance()(__PRETTY_FUNCTION__, Loglevel::DEBUG_L2); if (mp_devhandle == NULL) throw std::runtime_error("Attempted HID send on an invalid descriptor."); - return (CommError)(hid_send_feature_report( + return (hid_send_feature_report( mp_devhandle, (const unsigned char *)(packet), HID_REPORT_SIZE)); } -CommError Device::recv(void *packet) { +int Device::recv(void *packet) { // FIXME change CommError return value to int (return value of // hid_get_feature_report) int status; @@ -80,7 +80,7 @@ CommError Device::recv(void *packet) { std::this_thread::sleep_for(m_retry_timeout); } - return (CommError)status; + return status; } Stick10::Stick10() { -- cgit v1.2.1