1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-17 21:35:44 +03:00

Fixing a comma that should have been a semi-colon in the code. Fixing

some trailing spaces.
This commit is contained in:
Dominic Clifton 2014-04-07 23:18:50 +01:00
parent bf59943578
commit ce3b7859da

View file

@ -128,7 +128,7 @@ void resetBuffers(softSerial_t *softSerial)
softSerial->port.rxBufferHead = 0;
softSerial->port.txBuffer = softSerial->txBuffer;
softSerial->port.txBufferSize = SOFT_SERIAL_BUFFER_SIZE,
softSerial->port.txBufferSize = SOFT_SERIAL_BUFFER_SIZE;
softSerial->port.txBufferTail = 0;
softSerial->port.txBufferHead = 0;
}