From 6b476c19ba3718753fea2957e0b4101e1df08451 Mon Sep 17 00:00:00 2001 From: Jeff Epler Date: Sat, 29 May 2021 08:10:10 -0500 Subject: [PATCH] fix formatting --- ports/atmel-samd/common-hal/busio/UART.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ports/atmel-samd/common-hal/busio/UART.c b/ports/atmel-samd/common-hal/busio/UART.c index 164d0a18f1..5aa13d076d 100644 --- a/ports/atmel-samd/common-hal/busio/UART.c +++ b/ports/atmel-samd/common-hal/busio/UART.c @@ -156,8 +156,7 @@ void common_hal_busio_uart_construct(busio_uart_obj_t *self, self->buffer_length = receiver_buffer_size; if (NULL != receiver_buffer) { self->buffer = receiver_buffer; - } - else { + } else { // Initially allocate the UART's buffer in the long-lived part of the // heap. UARTs are generally long-lived objects, but the "make long- // lived" machinery is incapable of moving internal pointers like