AP_HAL_Linux: add newline and remove stray semicolon

This commit is contained in:
Willian Galvani 2023-10-30 21:03:25 -03:00
parent 5087a4262d
commit d33facd884

View File

@ -449,4 +449,4 @@ uint32_t UARTDriver::bw_in_bytes_per_second() const
// if connected, assume at least a 10/100Mbps connection
const uint32_t bitrate = (_connected && _ip != nullptr) ? 10E6 : _baudrate;
return bitrate/10; // convert bits to bytes minus overhead
};
}