1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-18 07:52:14 +01:00

Clean up unused var from HardwareSerial_private.h

This commit is contained in:
Matt Robinson 2014-01-28 20:39:15 +00:00
parent 9ebfe233b8
commit cd9657ffd0

View File

@ -88,7 +88,7 @@ void HardwareSerial::_rx_complete_irq(void)
}
} else {
// Parity error, read byte but discard it
unsigned char c = *_udr;
*_udr;
};
}