From 44c280e9fb2a7d02bcd2fdc70a1f1cdc5fb78b79 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Tue, 1 Dec 2015 07:18:10 +1100 Subject: [PATCH] AP_HAL: fixed typo in do_transfer declaration --- libraries/AP_HAL/I2CDriver.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_HAL/I2CDriver.h b/libraries/AP_HAL/I2CDriver.h index d98249b966..092f69467d 100644 --- a/libraries/AP_HAL/I2CDriver.h +++ b/libraries/AP_HAL/I2CDriver.h @@ -42,7 +42,7 @@ public: virtual bool do_transfer(uint8_t address, const uint8_t *send, uint32_t send_len, uint8_t *recv, - uint32_t recv_len) { return false;}; + uint32_t recv_len) { return false;} virtual uint8_t lockup_count() = 0; void ignore_errors(bool b) { _ignore_errors = b; } virtual AP_HAL::Semaphore* get_semaphore() = 0;