From fa271a2dd53a45cc1ed431e16a1c94fac17fbb63 Mon Sep 17 00:00:00 2001
From: "Michael J. Chudobiak" <mjc@avtechpulse.com>
Date: Thu, 30 Aug 2012 16:25:29 -0400
Subject: astyle fixes

---
 menus.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

(limited to 'menus.c')

diff --git a/menus.c b/menus.c
index bb04da0..a2398bd 100644
--- a/menus.c
+++ b/menus.c
@@ -3414,20 +3414,20 @@ static int Submenu_Implement_Changes(void)
 
 static void Nonstd_menu_network(void)
 {
-        nicinfo info;
+	nicinfo info;
 	if (nicutils_infofordefaultroute(&info)) {
 		gchar *response = g_strdup_printf ("MAC address: %s", info.mac);
 		LCD_write(0,0,response);
 		g_free (response);
 
 		response = g_strdup_printf ("IP address: %s", info.ip);
-                LCD_write(1,0,response);
-                g_free (response);
+		LCD_write(1,0,response);
+		g_free (response);
 
 		LCD_write(3,0,"Press CHANGE to continue.");
-        } else {
+	} else {
 		LCD_display_extended_message("No network found.", TRUE, FALSE);
-        }
+	}
 
 	globals.MenuStatus.Nonstd_Display=YES;
 }
-- 
cgit