From e502144eda540d46e210069cb364a29e46dc965d Mon Sep 17 00:00:00 2001
From: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Mon, 6 Apr 2015 21:28:14 -0700
Subject: [PATCH] Fixup formatting of last commit

---
 Marlin/temperature.cpp | 20 +++++++++-----------
 1 file changed, 9 insertions(+), 11 deletions(-)

diff --git a/Marlin/temperature.cpp b/Marlin/temperature.cpp
index b8403f3c747..aa524ac56aa 100644
--- a/Marlin/temperature.cpp
+++ b/Marlin/temperature.cpp
@@ -1525,17 +1525,15 @@ ISR(TIMER0_COMPB_vect) {
     for (int i = 0; i < 4; i++) raw_temp_value[i] = 0;
     raw_temp_bed_value = 0;
 
-	#if HAS_TEMP_0
-		#ifndef HEATER_0_USES_MAX6675
-		  #if HEATER_0_RAW_LO_TEMP > HEATER_0_RAW_HI_TEMP
-			#define GE0 <=
-		  #else
-			#define GE0 >=
-		  #endif
-		  if (current_temperature_raw[0] GE0 maxttemp_raw[0]) max_temp_error(0);
-		  if (minttemp_raw[0] GE0 current_temperature_raw[0]) min_temp_error(0);
-		#endif
-	#endif
+    #if HAS_TEMP_0 && !defined(HEATER_0_USES_MAX6675)
+      #if HEATER_0_RAW_LO_TEMP > HEATER_0_RAW_HI_TEMP
+        #define GE0 <=
+      #else
+        #define GE0 >=
+      #endif
+      if (current_temperature_raw[0] GE0 maxttemp_raw[0]) max_temp_error(0);
+      if (minttemp_raw[0] GE0 current_temperature_raw[0]) min_temp_error(0);
+    #endif
 
     #if HAS_TEMP_1
       #if HEATER_1_RAW_LO_TEMP > HEATER_1_RAW_HI_TEMP