From 59e8707a4fd92f48e694fb89d4ca14146bbd6cf9 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <github@thinkyhead.com>
Date: Wed, 2 May 2018 21:40:08 -0500
Subject: [PATCH] Remove some unused vars

---
 Marlin/temperature.cpp | 2 --
 1 file changed, 2 deletions(-)

diff --git a/Marlin/temperature.cpp b/Marlin/temperature.cpp
index 6e97a9a5db..cd6fc054aa 100644
--- a/Marlin/temperature.cpp
+++ b/Marlin/temperature.cpp
@@ -935,8 +935,6 @@ float Temperature::analog2temp(const int raw, const uint8_t e) {
 
   // Thermistor with conversion table?
   if (heater_ttbl_map[e] != NULL) {
-    float celsius = 0;
-    uint8_t i;
     short(*tt)[][2] = (short(*)[][2])(heater_ttbl_map[e]);
     for (uint8_t i = 1; i < heater_ttbllen_map[e]; i++) {
       const short entry10 = PGM_RD_W((*tt)[i][0]);