decnet: Reduce switch/case indent
Make the case labels the same indent as the switch. git diff -w shows differences for line wrapping. (fit multiple lines to 80 columns, join where possible) Signed-off-by: Joe Perches <joe@perches.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
4a9e4b0932
commit
06f8fe11bb
@@ -69,15 +69,15 @@ static void dnrmg_send_peer(struct sk_buff *skb)
|
||||
int group = 0;
|
||||
unsigned char flags = *skb->data;
|
||||
|
||||
switch(flags & DN_RT_CNTL_MSK) {
|
||||
case DN_RT_PKT_L1RT:
|
||||
group = DNRNG_NLGRP_L1;
|
||||
break;
|
||||
case DN_RT_PKT_L2RT:
|
||||
group = DNRNG_NLGRP_L2;
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
switch (flags & DN_RT_CNTL_MSK) {
|
||||
case DN_RT_PKT_L1RT:
|
||||
group = DNRNG_NLGRP_L1;
|
||||
break;
|
||||
case DN_RT_PKT_L2RT:
|
||||
group = DNRNG_NLGRP_L2;
|
||||
break;
|
||||
default:
|
||||
return;
|
||||
}
|
||||
|
||||
skb2 = dnrmg_build_message(skb, &status);
|
||||
|
||||
Reference in New Issue
Block a user