From c2b7ef1e7ed3152edfd8a23b198b06922bbbe38c Mon Sep 17 00:00:00 2001
From: Alexander Leisentritt <alexander.leisentritt@alitecs.de>
Date: Wed, 15 Jun 2016 11:11:16 +0200
Subject: [PATCH] "e" was renamed to "eindex" in a previous commit

---
 Marlin/ultralcd.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Marlin/ultralcd.cpp b/Marlin/ultralcd.cpp
index 0c8ccc07dc..a9f8aaa581 100644
--- a/Marlin/ultralcd.cpp
+++ b/Marlin/ultralcd.cpp
@@ -1290,7 +1290,7 @@ static void lcd_status_screen() {
       #if EXTRUDERS == 1
         pos_label = PSTR(MSG_MOVE_E);
       #else
-        switch (e) {
+        switch (eindex) {
           case 0: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E1); break;
           case 1: pos_label = PSTR(MSG_MOVE_E MSG_MOVE_E2); break;
           #if EXTRUDERS > 2