aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Robinson <git@nerdoftheherd.com>2014-01-28 20:39:15 +0000
committerMatt Robinson <git@nerdoftheherd.com>2014-01-28 20:39:15 +0000
commit166a6c28ed11c98f361e7868d8886528597212b5 (patch)
tree54fad730d2c6cf2c75d583de6f26650cc0522e76
parente088421ef902180f6561f906181408133796531f (diff)
Clean up unused var from HardwareSerial_private.h
-rw-r--r--cores/arduino/HardwareSerial_private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cores/arduino/HardwareSerial_private.h b/cores/arduino/HardwareSerial_private.h
index 54a0c7a..c0f631f 100644
--- a/cores/arduino/HardwareSerial_private.h
+++ b/cores/arduino/HardwareSerial_private.h
@@ -88,7 +88,7 @@ void HardwareSerial::_rx_complete_irq(void)
}
} else {
// Parity error, read byte but discard it
- unsigned char c = *_udr;
+ *_udr;
};
}