From d33facd884858e38ed33b183c0af150500257a09 Mon Sep 17 00:00:00 2001 From: Willian Galvani Date: Mon, 30 Oct 2023 21:03:25 -0300 Subject: [PATCH] AP_HAL_Linux: add newline and remove stray semicolon --- libraries/AP_HAL_Linux/UARTDriver.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_HAL_Linux/UARTDriver.cpp b/libraries/AP_HAL_Linux/UARTDriver.cpp index 2e7d3c61d7..fb0be43cee 100644 --- a/libraries/AP_HAL_Linux/UARTDriver.cpp +++ b/libraries/AP_HAL_Linux/UARTDriver.cpp @@ -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 -}; \ No newline at end of file +}