format code according to conventions [skip ci]

This commit is contained in:
QMK Bot 2020-03-06 13:28:11 +00:00
parent 9810756ee0
commit bad9468ce1
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ void uart_putchar(uint8_t c) {
// cli();
tx_buffer[i] = c;
tx_buffer_head = i;
UCSRnB = (1 << RXENn) | (1 << TXENn) | (1 << RXCIEn) | (1 << UDRIEn);
UCSRnB = (1 << RXENn) | (1 << TXENn) | (1 << RXCIEn) | (1 << UDRIEn);
// sei();
}