silly switch style fix

This commit is contained in:
Denis Vlasenko
2006-09-27 19:51:06 +00:00
parent 94d5d82bd8
commit c16bd212e3
8 changed files with 10 additions and 10 deletions

View File

@@ -820,7 +820,7 @@ int do_iproute(int argc, char **argv)
if (*argv) {
command_num = compare_string_array(ip_route_commands, *argv);
}
switch(command_num) {
switch (command_num) {
case 0: /* add*/
flags = NLM_F_CREATE|NLM_F_EXCL;
break;