diff --git a/Marlin/MarlinSerial.cpp b/Marlin/MarlinSerial.cpp
index 114ec1105aa1d06b6302e66f2e72bbf978a6679c..bf7675426d316478405047016c38639e0fb13d03 100644
--- a/Marlin/MarlinSerial.cpp
+++ b/Marlin/MarlinSerial.cpp
@@ -243,8 +243,8 @@ void MarlinSerial::flush(void) {
// register empty flag ourselves. If it is set, pretend an
// interrupt has happened and call the handler to free up
// space for us.
- if(TEST(M_UCSRxA, M_UDREx))
- _tx_udr_empty_irq();
+ if (TEST(M_UCSRxA, M_UDREx))
+ _tx_udr_empty_irq();
} else {
// nop, the interrupt handler will free up space for us
}