From 258172f6ab137c0c75fe6deb541d6705cfe6cdfb Mon Sep 17 00:00:00 2001 From: Brent Wilkins Date: Mon, 18 Jan 2016 13:12:11 -0700 Subject: Update Wire.cpp Removed implicit conversions from unsigned, to signed, back to unsigned. --- libraries/Wire/Wire.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/Wire/Wire.cpp b/libraries/Wire/Wire.cpp index 2bd48ed..7944fcb 100644 --- a/libraries/Wire/Wire.cpp +++ b/libraries/Wire/Wire.cpp @@ -169,7 +169,7 @@ void TwoWire::beginTransmission(int address) uint8_t TwoWire::endTransmission(uint8_t sendStop) { // transmit buffer (blocking) - int8_t ret = twi_writeTo(txAddress, txBuffer, txBufferLength, 1, sendStop); + uint8_t ret = twi_writeTo(txAddress, txBuffer, txBufferLength, 1, sendStop); // reset tx buffer iterator vars txBufferIndex = 0; txBufferLength = 0; -- cgit v1.2.3-18-g5258