diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-27 19:51:06 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-09-27 19:51:06 +0000 |
commit | c16bd212e341598452b7885d9e4ac2064f417673 (patch) | |
tree | 843350d8cd414849eadca5b65ef8f497834895d2 /networking/libiproute | |
parent | 94d5d82bd84ec65d52c3df92276221d48990f306 (diff) | |
download | busybox-c16bd212e341598452b7885d9e4ac2064f417673.tar.gz |
silly switch style fix
Diffstat (limited to 'networking/libiproute')
-rw-r--r-- | networking/libiproute/iproute.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/libiproute/iproute.c b/networking/libiproute/iproute.c index c4bbd98b1..6c902eb0e 100644 --- a/networking/libiproute/iproute.c +++ b/networking/libiproute/iproute.c @@ -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; |