diff options
author | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-30 16:25:29 -0400 |
---|---|---|
committer | Michael J. Chudobiak <mjc@avtechpulse.com> | 2012-08-30 16:25:29 -0400 |
commit | fa271a2dd53a45cc1ed431e16a1c94fac17fbb63 (patch) | |
tree | 356d16a0beb33493c054101b2c24293f21b148c7 /menus.c | |
parent | a9051a94473b63da8f6adb50ed08c6817145f159 (diff) |
astyle fixes
Diffstat (limited to 'menus.c')
-rw-r--r-- | menus.c | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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; } |