fix missing break statements in switch...

This commit is contained in:
Koushik Dutta 2010-08-23 16:15:33 -07:00
parent ceddcd59ac
commit 56606a2da3

View File

@ -852,6 +852,7 @@ void show_advanced_menu()
ui_print("Key: %d\n", key);
}
while (action != GO_BACK);
break;
}
case 5:
{
@ -892,6 +893,7 @@ void show_advanced_menu()
ui_print("Done!\n");
else
ui_print("An error occured while partitioning your SD Card. Please see /tmp/recovery.log for more details.\n");
break;
}
case 6:
{
@ -900,6 +902,7 @@ void show_advanced_menu()
ui_print("Fixing permissions...\n");
__system("fix_permissions");
ui_print("Done!\n");
break;
}
}
}