1
0
mirror of https://github.com/esp8266/Arduino.git synced 2025-06-16 11:21:18 +03: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 { } else {
// Parity error, read byte but discard it // Parity error, read byte but discard it
unsigned char c = *_udr; *_udr;
}; };
} }