From 51c9c3fe2c56a7bf89cceb08779b377225f8e83f Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 9 Jul 2016 16:51:12 -0700 Subject: [PATCH] Indentation in MarlinSerial.cpp --- Marlin/MarlinSerial.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Marlin/MarlinSerial.cpp b/Marlin/MarlinSerial.cpp index 114ec1105..bf7675426 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 }